findAsync method

Future<T> findAsync({
  1. String? tag,
})

Asynchronously resolves the value of this provider, flattening the Future.

Implementation

Future<T> findAsync({String? tag}) async {
  return await find(tag: tag);
}