WxAnchorStyle constructor

const WxAnchorStyle({
  1. EdgeInsetsGeometry? margin,
  2. EdgeInsetsGeometry? padding,
  3. double? scale,
  4. double? opacity,
  5. ShapeBorder? overlayShape,
  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,
})

Create a raw anchor style.

Implementation

const WxAnchorStyle({
  this.margin,
  this.padding,
  this.scale,
  this.opacity,
  this.overlayShape,
  this.overlayColor,
  this.overlayOpacity,
  this.overlayExtent,
  this.textColor,
  this.textStyle,
  this.textAlign,
  this.iconColor,
  this.iconOpacity,
  this.iconSize,
});