ProxyProvider5<T, T2, T3, T4, T5, R> constructor

ProxyProvider5<T, T2, T3, T4, T5, R>({
  1. Key? key,
  2. Create<R>? create,
  3. required ProxyProviderBuilder5<T, T2, T3, T4, T5, R> update,
  4. UpdateShouldNotify<R>? updateShouldNotify,
  5. Dispose<R>? dispose,
  6. bool? lazy,
  7. TransitionBuilder? builder,
  8. Widget? child,
})

Initializes key for subclasses.

Implementation

ProxyProvider5({
  Key? key,
  Create<R>? create,
  required ProxyProviderBuilder5<T, T2, T3, T4, T5, R> update,
  UpdateShouldNotify<R>? updateShouldNotify,
  Dispose<R>? dispose,
  bool? lazy,
  TransitionBuilder? builder,
  Widget? child,
}) : super(
        key: key,
        lazy: lazy,
        builder: builder,
        create: create,
        update: (context, value) => update(
          context,
          Provider.of(context),
          Provider.of(context),
          Provider.of(context),
          Provider.of(context),
          Provider.of(context),
          value,
        ),
        updateShouldNotify: updateShouldNotify,
        dispose: dispose,
        child: child,
      );