fastFetchRemoteConfigAll method

Future<Map?> fastFetchRemoteConfigAll()

Implementation

Future<Map?> fastFetchRemoteConfigAll() async {
  String jsonString = await _remote_config_channel.invokeMethod('fastFetchRemoteConfigAll');
  Map map = json.decode(jsonString);
  return map;
}