ParentTab constructor

const ParentTab({
  1. Key? key,
  2. required Tab tab,
  3. required Widget child,
})

Implementation

const ParentTab({
  Key? key,
  required this.tab,
  required Widget child,
}) : super(key: key, child: child);