SolidNavTab constructor

const SolidNavTab({
  1. required String title,
  2. required IconData icon,
  3. Color? color,
  4. Widget? content,
  5. String? tooltip,
  6. String? message,
  7. String? dialogTitle,
  8. void action(
    1. BuildContext
    )?,
})

Implementation

const SolidNavTab({
  required this.title,
  required this.icon,
  this.color,
  this.content,
  this.tooltip,
  this.message,
  this.dialogTitle,
  this.action,
});