ProxyProvider6<T, T2, T3, T4, T5, T6, R> constructor

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

Implementation

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