QUTab constructor

const QUTab({
  1. Key? key,
  2. required List<Widget> tabBarViewList,
  3. required List<String> tabBarList,
  4. EQUTabType type = EQUTabType.CARD,
  5. Color? labelColor,
})

Implementation

const QUTab(
    {Key? key,
    required this.tabBarViewList,
    required this.tabBarList,
    this.type = EQUTabType.CARD,
    this.labelColor})
    : super(key: key);