get method

String? get(
  1. String key
)

Gets a map element specified by its key.

  • key a key of the element to get. Returns the value of the map element.

Implementation

String? get(String key) {
  return _values[key];
}