ShellAction constructor

const ShellAction({
  1. IconData? icon,
  2. String? label,
  3. VoidCallback? onTap,
  4. String? tooltip,
  5. bool isPrimary = false,
  6. bool enabled = true,
  7. WidgetBuilder? builder,
})

Implementation

const ShellAction({
  this.icon,
  this.label,
  this.onTap,
  this.tooltip,
  this.isPrimary = false,
  this.enabled = true,
  this.builder,
});