read<T> method

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

Implementation

T? read<T>(String key) {
  return subject.value![key] as T?;
}