MyFloatPanelIconBtn constructor

const MyFloatPanelIconBtn({
  1. required IconData icon,
  2. String? id,
  3. FutureOr<void> onTap()?,
  4. String? tooltip,
  5. bool? disabled,
})

Implementation

const MyFloatPanelIconBtn({
  required this.icon,
  this.id,
  this.onTap,
  this.tooltip,
  this.disabled,
});