WxAnchorStyle.from constructor

WxAnchorStyle.from(
  1. WxAnchorStyle? other
)

Create a WxAnchorStyle from another style

Implementation

WxAnchorStyle.from(WxAnchorStyle? other)
    : margin = other?.margin,
      padding = other?.padding,
      scale = other?.scale,
      opacity = other?.opacity,
      overlayShape = other?.overlayShape,
      overlayColor = other?.overlayColor,
      overlayOpacity = other?.overlayOpacity,
      overlayExtent = other?.overlayExtent,
      textColor = other?.textColor,
      textStyle = other?.textStyle,
      textAlign = other?.textAlign,
      iconColor = other?.iconColor,
      iconOpacity = other?.iconOpacity,
      iconSize = other?.iconSize;