TTabContent<T> constructor

const TTabContent<T>({
  1. Key? key,
  2. required TTabController<T> controller,
  3. required List<TTab<T>> tabs,
})

Creates a tab content widget.

Implementation

const TTabContent({
  super.key,
  required this.controller,
  required this.tabs,
});