getRemoteConfigsContentAsString static method

Future<String?> getRemoteConfigsContentAsString()

Implementation

static Future<String?> getRemoteConfigsContentAsString() async {
  final result =
      await _channel.invokeMethod('getRemoteConfigsContentAsString');
  return result as String?;
}