get<R> method

R? get<R>(
  1. K key
)

Implementation

R? get<R>(K key) {
  return this[key] as R;
}