get abstract method

E? get(
  1. String key, {
  2. E? defaultValue,
})

exist, null is returned.

If defaultValue is specified, it is returned in case the key does not exist.

Implementation

E? get(String key, {E? defaultValue});