CustomToolbarItem constructor

const CustomToolbarItem({
  1. required String id,
  2. String? title,
  3. String? icon,
  4. String? className,
  5. VoidCallback? onPressed,
  6. bool? selected,
  7. bool? disabled,
})

Implementation

const CustomToolbarItem({
  required this.id,
  this.title,
  this.icon,
  this.className,
  this.onPressed,
  this.selected,
  this.disabled,
});