RoundFloatingButton constructor

const RoundFloatingButton({
  1. Key? key,
  2. required SvgData icon,
  3. Offset? offset,
  4. void onPressed()?,
  5. String? text,
  6. bool showText = true,
  7. Color? color,
  8. String? hint,
  9. bool minified = false,
  10. BoxBorder? border,
})

Implementation

const RoundFloatingButton({
  super.key,
  required this.icon,
  this.offset,
  this.onPressed,
  this.text,
  this.showText = true,
  this.color,
  this.hint,
  this.minified = false,
  this.border,
});