setUserCountry method

  1. @override
Future<void> setUserCountry(
  1. String country
)
override

Implementation

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