setUserCountry method
Implementation
@override
Future<void> setUserCountry(String country) async {
try {
await _logCommonChannel.invokeMethod(
SuperfineSdkChannelMethods.setUserCountry, {'country': country});
} catch (e) {
print("Error setting user country: $e");
}
}