getRemoteConfig method
Implementation
@override
Future<Map<String, dynamic>?> getRemoteConfig() async {
final result = await methodChannel.invokeMethod<Map>('getRemoteConfig');
return result != null ? Map<String, dynamic>.from(result) : null;
}
@override
Future<Map<String, dynamic>?> getRemoteConfig() async {
final result = await methodChannel.invokeMethod<Map>('getRemoteConfig');
return result != null ? Map<String, dynamic>.from(result) : null;
}