FloatingButtonStyles constructor

FloatingButtonStyles({
  1. Color? colorFloatingButtonLeft = Colors.red,
  2. Color? colorFloatingButtonTop = Colors.green,
  3. Color? colorFloatingButtonRight = Colors.blue,
  4. Color? colorFloatingCenterButton = Colors.blue,
  5. IconData? iconFloatingCenterButton = Icons.add,
  6. IconData? iconFloatingLeftButton = Icons.add,
  7. IconData? iconFloatingTopButton = Icons.add,
  8. IconData? iconFloatingRightButton = Icons.add,
  9. double? elevationOfTheThreeFloatingButtons,
  10. double? elevationFloatingCenterButton,
})

Sets the styles for the center floatingButton and the three floatingButtons that show up when the center click is pressed

Implementation

FloatingButtonStyles({
  this.colorFloatingButtonLeft = Colors.red,
  this.colorFloatingButtonTop = Colors.green,
  this.colorFloatingButtonRight = Colors.blue,
  this.colorFloatingCenterButton = Colors.blue,
  this.iconFloatingCenterButton = Icons.add,
  this.iconFloatingLeftButton = Icons.add,
  this.iconFloatingTopButton = Icons.add,
  this.iconFloatingRightButton = Icons.add,
  this.elevationOfTheThreeFloatingButtons,
  this.elevationFloatingCenterButton,
});