provider method
- {Key? key,
- ErrorBuilder<
double> ? catchError, - UpdateShouldNotify<
double> ? updateShouldNotify, - bool? lazy,
- TransitionBuilder? builder,
- Widget? child}
Implementation
Widget provider({
Key? key,
ErrorBuilder<double>? catchError,
UpdateShouldNotify<double>? updateShouldNotify,
bool? lazy,
TransitionBuilder? builder,
Widget? child,
}) {
return Provider.value(
value: this,
child: value.provider(
key: key,
updateShouldNotify: updateShouldNotify,
lazy: lazy,
builder: builder,
child: child,
),
);
}