cloneWithChild method

  1. @override
NumericProxyProvider<T, T2, T3, T4, T5, T6, R> cloneWithChild (Widget child)
override

Implementation

@override
NumericProxyProvider<T, T2, T3, T4, T5, T6, R> cloneWithChild(Widget child) {
  return NumericProxyProvider(
    key: key,
    initialBuilder: initialBuilder,
    builder: builder,
    updateShouldNotify: updateShouldNotify,
    dispose: dispose,
    child: child,
  );
}