TabBarView constructor

const TabBarView({
  1. Key? key,
  2. required List<Widget> children,
  3. TabController? controller,
  4. ScrollPhysics? physics,
})

Implementation

const TabBarView({
  super.key,
  required this.children,
  this.controller,
  this.physics,
});