setCountry method

Future<void> setCountry(
  1. CountryCode country
)

Sets the available methods to be accounted as the provided country.

Implementation

Future<void> setCountry(CountryCode country) {
  Log.debug('setCountry($country)', '$runtimeType');
  return _walletRepository.setCountry(country);
}