FabTextBase constructor

const FabTextBase({
  1. Key? key,
  2. String? label,
  3. IconData? icon,
  4. Color? color,
  5. Object? heroTag,
  6. required VoidCallback onPressed,
})

Creates a FabTextBase button.

Implementation

const FabTextBase({
  super.key,
  this.label,
  this.icon,
  this.color,
  this.heroTag,
  required this.onPressed,
});