FUIFloatingActionButton constructor

const FUIFloatingActionButton({
  1. Key? key,
  2. required IconData icon,
  3. VoidCallback? onPressed,
  4. String? tooltip,
  5. Object? heroTag,
  6. bool small = false,
})

Implementation

const FUIFloatingActionButton({
  super.key,
  required this.icon,
  this.onPressed,
  this.tooltip,
  this.heroTag,
  this.small = false,
});