WxDrivenAnchorStyle.rectangle constructor

WxDrivenAnchorStyle.rectangle({
  1. BorderRadius borderRadius = BorderRadius.zero,
  2. EdgeInsetsGeometry? margin,
  3. EdgeInsetsGeometry? padding,
  4. double? scale,
  5. double? opacity,
  6. Color? overlayColor,
  7. double? overlayOpacity,
  8. Size? overlayExtent,
  9. Color? textColor,
  10. TextStyle? textStyle,
  11. TextAlign? textAlign,
  12. Color? iconColor,
  13. double? iconOpacity,
  14. double? iconSize,
  15. WxAnchorStyle? focusedStyle,
  16. WxAnchorStyle? hoveredStyle,
  17. WxAnchorStyle? pressedStyle,
  18. WxAnchorStyle? disabledStyle,
  19. bool? inherits,
})

Default constructor for a driven WxAnchorStyle.

Implementation

WxDrivenAnchorStyle.rectangle({
  super.borderRadius,
  super.margin,
  super.padding,
  super.scale,
  super.opacity,
  super.overlayColor,
  super.overlayOpacity,
  super.overlayExtent,
  super.textColor,
  super.textStyle,
  super.textAlign,
  super.iconColor,
  super.iconOpacity,
  super.iconSize,
  this.focusedStyle,
  this.hoveredStyle,
  this.pressedStyle,
  this.disabledStyle,
  this.inherits,
}) : super.rectangle();