find method

dynamic find(
  1. Object? key
)

Implementation

find(Object? key) {
  return containsKey(key) ? this[key] : null;
}