getRemoteConfigsValueAsString static method

Future<String?> getRemoteConfigsValueAsString(
  1. String key,
  2. String defaultValue
)

Get remote configs value as string

Implementation

static Future<String?> getRemoteConfigsValueAsString(
    String key, String defaultValue) async {
  final String? result = await _channel.invokeMethod(
      'getRemoteConfigsValueAsString',
      {'key': key, 'defaultValue': defaultValue});
  return result;
}