futureValue method

Future<T> futureValue()

Implementation

Future<T> futureValue() => (this is Future<T>) ? this as Future<T> : Future.value(this as T);