FWFloatingActionButton constructor

const FWFloatingActionButton({
  1. Key? key,
  2. dynamic onPressed()?,
  3. Color? backgroundColor,
  4. double? elevation = 5.0,
  5. String? toolTip,
  6. Widget? child,
  7. Color? foregroundColor,
  8. Color? splashColor,
  9. bool mini = false,
})

Implementation

const FWFloatingActionButton({
  Key? key,
  this.onPressed,
  this.backgroundColor,
  this.elevation = 5.0,
  this.toolTip,
  this.child,
  this.foregroundColor,
  this.splashColor,
  this.mini = false,
}) : super(key: key);