build method
Builds the provider value.
Implementation
FutureOr<T> build(Ref<AsyncValue<T>> ref) {
final b = _builder;
if (b == null) {
throw UnimplementedError(
'Override buildAsync(ref) in your subclass, or use AsyncProvider((ref) async => ...).',
);
}
return b(ref);
}