setCountry method

Future<void> setCountry(
  1. CountryCode country
)

Sets the country.

Implementation

Future<void> setCountry(CountryCode country) async {
  await _walletService.setCountry(country);
}