getClientParamValueForKey static method

Future? getClientParamValueForKey(
  1. String key
)

Implementation

static Future<dynamic>? getClientParamValueForKey(String key) async {
  return await _channel
      .invokeMethod("getClientParamValueForKey", {"key": key});
}