lazy<T> static method

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

Create a lazy reference

Implementation

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