get<T> method

T? get<T>(
  1. dynamic key
)

Implementation

T? get<T>(key) {
  return this["$key"] as T?;
}