CheckboxStyle.from constructor

CheckboxStyle.from(
  1. CheckboxStyle? other
)

Create a checkbox's style from another style

Implementation

CheckboxStyle.from(CheckboxStyle? other)
    : size = other?.size,
      shape = other?.shape,
      margin = other?.margin,
      padding = other?.padding,
      backgroundColor = other?.backgroundColor,
      backgroundOpacity = other?.backgroundOpacity,
      backgroundAlpha = other?.backgroundAlpha,
      borderColor = other?.borderColor,
      borderOpacity = other?.borderOpacity,
      borderAlpha = other?.borderAlpha,
      borderWidth = other?.borderWidth,
      borderRadius = other?.borderRadius,
      borderStyle = other?.borderStyle,
      checkmarkInset = other?.checkmarkInset,
      checkmarkColor = other?.checkmarkColor,
      checkmarkOpacity = other?.checkmarkOpacity,
      checkmarkAlpha = other?.checkmarkAlpha,
      checkmarkWeight = other?.checkmarkWeight,
      checkmarkStyle = other?.checkmarkStyle,
      overlayColor = other?.overlayColor,
      overlayOpacity = other?.overlayOpacity,
      overlayDisabled = other?.overlayDisabled,
      overlayRadius = other?.overlayRadius;