TextTabs constructor

const TextTabs({
  1. required List<String> labels,
  2. dynamic onTabChange(
    1. int
    )?,
  3. required double fontSize,
  4. required Color colorTab,
  5. Key? key,
})

Implementation

const TextTabs(
    {required this.labels,
    this.onTabChange,
    required this.fontSize,
    required this.colorTab,
    Key? key})
    : super(key: key);