WxTileStyle.from constructor

WxTileStyle.from(
  1. WxTileStyle? other
)

Create a WxTileStyle from another style

Implementation

WxTileStyle.from(WxTileStyle? other)
    : direction = other?.direction,
      margin = other?.margin,
      spacing = other?.spacing,
      adaptiveSpacing = other?.adaptiveSpacing,
      align = other?.align,
      justify = other?.justify,
      inline = other?.inline,
      childWrap = other?.childWrap;