get method

Future<String?> get(
  1. String key
)

Returns the value of a String parameter.

Implementation

Future<String?> get(String key) async {
  return await _channel.$get(this, key) as String;
}