value property
Value if this completed with a value.
Null otherwise.
Implementation
@override
T? get value => status == FutureStatus.fulfilled ? _result.result as T : null;
Value if this completed with a value.
Null otherwise.
@override
T? get value => status == FutureStatus.fulfilled ? _result.result as T : null;