TabPane constructor

const TabPane({
  1. Key? key,
  2. Widget? child,
  3. Widget? closeIcon,
  4. bool disabled = false,
  5. bool forceRender = false,
  6. required String name,
  7. required Widget tab,
})

Implementation

const TabPane({
  Key? key,
  this.child,
  this.closeIcon,
  this.disabled = false,
  this.forceRender = false,
  required this.name,
  required this.tab,
}) : super(key: key);