orAsync abstract method

Future<T> orAsync(
  1. Future<T> defaultValue
)

Returns a Future of the wrapped value (if present), or the defaultValue.

Implementation

Future<T> orAsync(Future<T> defaultValue);