TabBarView constructor
const
TabBarView({
- Key? key,
- required TabController controller,
- required List<
Widget> children,
Creates a TabBarView with the given controller and children.
Implementation
const TabBarView({
super.key,
required this.controller,
required this.children,
});