KeyedTabChildWidget<T> constructor
Creates a keyed tab child widget.
Parameters:
key: The unique key value for this tab (required)child: The widget to wrap (required)indexed: Whether to use indexed positioning (optional)
Implementation
KeyedTabChildWidget({
required T key,
required super.child,
super.indexed,
}) : super(key: ValueKey(key));