eager<T> static method

EagerRef<T> eager<T>({
  1. String? tag,
  2. ZenScope? scope,
})

Create an eager reference

Implementation

static EagerRef<T> eager<T>({String? tag, ZenScope? scope}) {
  return EagerRef<T>(tag: tag, scope: scope);
}