FutureProvider<T> constructor

FutureProvider<T>(
  1. Future<T> _build()
)

Creates a FutureProvider with the given _build function.

Implementation

FutureProvider(this._build);