levitLazyPutAsync method
Registers this Future as a lazy asynchronous dependency.
Parameters:
tag: Optional unique identifier for the instance.permanent: Iftrue, the registration survives a non-forced reset.isFactory: Iftrue, the future is re-awaited for everyfindAsynccall.
Implementation
void levitLazyPutAsync(
{String? tag, bool permanent = false, bool isFactory = false}) =>
Ls.lazyPutAsync(() => this,
tag: tag, permanent: permanent, isFactory: isFactory);