NiceShowcaseTab constructor

const NiceShowcaseTab({
  1. required String key,
  2. required String label,
  3. required WidgetBuilder render,
  4. IconData? icon,
})

Implementation

const NiceShowcaseTab({
  required this.key,
  required this.label,
  required this.render,
  this.icon,
});