get method

V? get(
  1. K key
)

Get the value stored at key in this database. If there isn't one, this method will return null rather than throw an exception.

See Map.[].

Implementation

V? get(K key) {
  return _map[key];
}