NiceTabPanel constructor

const NiceTabPanel({
  1. Key? key,
  2. required List<NiceTabEntry> tabs,
  3. String? activeTabKey,
  4. ValueChanged<String>? onTabChanged,
  5. ValueChanged<String>? onTabClosed,
  6. bool showAddButton = false,
  7. VoidCallback? onAddTab,
})

Implementation

const NiceTabPanel({
  super.key,
  required this.tabs,
  this.activeTabKey,
  this.onTabChanged,
  this.onTabClosed,
  this.showAddButton = false,
  this.onAddTab,
});