focusWidgetWrapper property

Widget Function(BuildContext context, Widget child)? focusWidgetWrapper
final

? Why: Usually some widgets depends on providers or inherited data that fail to be retrived in a different context

Wrapping the provided child inside a copy of the needed providers will solve this issue

Implementation

final Widget Function(BuildContext context, Widget child)? focusWidgetWrapper;