RoundFloatingButton constructor

const RoundFloatingButton({
  1. Key? key,
  2. SvgData? icon,
  3. Offset? offset,
  4. String? asset,
  5. double assetWidth = 60,
  6. void onPressed()?,
  7. String? text,
  8. bool showText = true,
  9. Color? color,
  10. String? hint,
  11. bool withBlur = false,
  12. bool minified = false,
  13. BoxBorder? border,
  14. Widget? child,
})

Implementation

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