reInherited abstract method

Widget reInherited({
  1. Key? key,
  2. required BuildContext context,
  3. required Widget builder(
    1. BuildContext
    ),
})

Provide the Injected model to another widget tree branch.

Implementation

Widget reInherited({
  Key? key,
  required BuildContext context,
  required Widget Function(BuildContext) builder,
  // bool keepAlive = false,
  // String? debugPrintWhenNotifiedPreMessage,
  // String Function(T?)? toDebugString,
});