ProxyProvider4<T, T2, T3, T4, R> constructor

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

Implementation

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