getRemoteConfig method

  1. @override
Future<Map<String, dynamic>?> getRemoteConfig()
override

Implementation

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