defaultFor<T> static method

Generator<T> defaultFor<T>()

Implementation

static Generator<T> defaultFor<T>() {
  return (_defaults[_TypeWrapper<T>()] as Generator<T>?) ??
      (throw InternalNoGeneratorFound());
}