DButtonBorder constructor

DButtonBorder({
  1. required Color borderColor,
  2. double borderWidth = 2.0,
  3. required Widget child,
  4. Color disableColor = Colors.grey,
  5. double? height,
  6. Color mainColor = Colors.white,
  7. dynamic onClick()?,
  8. dynamic onDoubleClick()?,
  9. dynamic onLongClick()?,
  10. EdgeInsetsGeometry? padding,
  11. double radius = 4.0,
  12. Offset shadowOffset = Offset.zero,
  13. Color splashColor = Colors.grey,
  14. double? width,
})

Implementation

DButtonBorder({
  required this.borderColor,
  this.borderWidth = 2.0,
  required this.child,
  this.disableColor = Colors.grey,
  this.height,
  this.mainColor = Colors.white,
  this.onClick,
  this.onDoubleClick,
  this.onLongClick,
  this.padding,
  this.radius = 4.0,
  this.shadowOffset = Offset.zero,
  this.splashColor = Colors.grey,
  this.width,
});