orElseGetNullableAsync abstract method

Future<T?> orElseGetNullableAsync(
  1. Future<T?> supply()
)

Returns this Optional's value, if present, as nullable. Otherwise, returns the result of calling supply() asynchronously.

Implementation

Future<T?> orElseGetNullableAsync(Future<T?> Function() supply);