getRemoteConfigsContentAsString static method

Future<String?> getRemoteConfigsContentAsString()

Get remote configs configurations

Implementation

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