assign method

void assign(
  1. FutureOr<T> call
)

Implementation

void assign(FutureOr<T> call) => _apply(() async => _value ??= await call);