TabContentView constructor

const TabContentView({
  1. Key? key,
  2. required List<Widget> children,
})

Implementation

const TabContentView({
  super.key,
  required this.children,
});