FunButtonBox constructor

const FunButtonBox({
  1. required int index,
  2. required BuilderBox builderBox,
  3. Color highlightColor = Colors.transparent,
  4. Color hoverColor = Colors.transparent,
  5. Color? focusColor,
  6. Color? splashColor,
  7. double? radius,
  8. bool enableClick = true,
  9. Key? key,
})

Implementation

const FunButtonBox({
  required this.index,
  required this.builderBox,
  this.highlightColor = Colors.transparent,
  this.hoverColor = Colors.transparent,
  this.focusColor,
  this.splashColor,
  this.radius,
  this.enableClick = true,
  Key? key,
}) : super(key: key);