NiceTabEntry constructor

const NiceTabEntry({
  1. required String key,
  2. required String label,
  3. required WidgetBuilder builder,
  4. IconData? icon,
  5. bool closable = true,
  6. bool dirty = false,
})

Implementation

const NiceTabEntry({
  required this.key,
  required this.label,
  required this.builder,
  this.icon,
  this.closable = true,
  this.dirty = false,
});