get method

dynamic get(
  1. String key
)

Gets value for given key

Implementation

dynamic get(String key) {
  return this._map[key];
}