ProxyProvider3<T, T2, T3, R> constructor

ProxyProvider3<T, T2, T3, R>({Key key, ValueBuilder<R> initialBuilder, @required ProxyProviderBuilder3<T, T2, T3, R> builder, UpdateShouldNotify<R> updateShouldNotify, Disposer<R> dispose, Widget child })

Implementation

ProxyProvider3({
  Key key,
  ValueBuilder<R> initialBuilder,
  @required ProxyProviderBuilder3<T, T2, T3, R> builder,
  UpdateShouldNotify<R> updateShouldNotify,
  Disposer<R> dispose,
  Widget child,
}) : super(
  key: key,
  initialBuilder: initialBuilder,
  builder: builder,
  updateShouldNotify: updateShouldNotify,
  dispose: dispose,
  child: child,
);