ToggleIconStyle.from constructor

ToggleIconStyle.from(
  1. ToggleIconStyle? other
)

Create an ToggleIconStyle from another style

Implementation

ToggleIconStyle.from(ToggleIconStyle? other)
    : size = other?.size,
      backColor = other?.backColor,
      backOpacity = other?.backOpacity,
      color = other?.color,
      opacity = other?.opacity,
      scale = other?.scale;