get method

Callback<T>? get(
  1. String key
)

Get a callback by key

Implementation

Callback<T>? get(String key) {
  return _map[key];
}