GetRemoteConfig method
Implementation
@override
Future<String?> GetRemoteConfig(String key, String defaultValue) async {
try {
String config = await methodChannel.invokeMethod(
'GetRemoteConfig', {'key': key, 'defaultValue': defaultValue});
return config;
} on PlatformException catch (e) {
print("Failed to call GetRemoteConfig: '${e.message}'.");
}
return null;
}