ProxyProvider2<T, T2, R> constructor
Implementation
ProxyProvider2({
Key key,
ValueBuilder<R> initialBuilder,
@required ProxyProviderBuilder2<T, T2, R> builder,
UpdateShouldNotify<R> updateShouldNotify,
Disposer<R> dispose,
Widget child,
}) : super(
key: key,
initialBuilder: initialBuilder,
builder: builder,
updateShouldNotify: updateShouldNotify,
dispose: dispose,
child: child,
);