getAs<T> method

T? getAs<T>(
  1. String key
)

Implementation

T? getAs<T>(String key) {
  return _data[key] as T?;
}