lazyOf<T> function

Lazy<T> lazyOf<T>(
  1. T value
)

Creates a new instance of the Lazy that is already initialized with the specified value.

Implementation

Lazy<T> lazyOf<T>(T value) => throw UnimplementedError();