DButtonCircle constructor

DButtonCircle({
  1. required Widget child,
  2. double? diameter,
  3. Color disableColor = Colors.grey,
  4. Color mainColor = Colors.white,
  5. dynamic onClick()?,
  6. dynamic onDoubleClick()?,
  7. dynamic onLongClick()?,
  8. EdgeInsetsGeometry? padding,
  9. Color? shadowColor,
  10. Offset shadowOffset = Offset.zero,
  11. Color splashColor = Colors.grey,
})

Implementation

DButtonCircle({
  required this.child,
  this.diameter,
  this.disableColor = Colors.grey,
  this.mainColor = Colors.white,
  this.onClick,
  this.onDoubleClick,
  this.onLongClick,
  this.padding,
  this.shadowColor,
  this.shadowOffset = Offset.zero,
  this.splashColor = Colors.grey,
});