of<T> method

T of<T>()

Implementation

T of<T>() {
  if (!has<T>()) {
    throw Exception("Instanceof <${T.toString()}> used before providing!");
  }

  return Subordinate.check(_data[T.hashCode], this);
}