FlexiChipStyle.from constructor

FlexiChipStyle.from(
  1. FlexiChipStyle? other
)

Create a chip's style from another style

Implementation

FlexiChipStyle.from(FlexiChipStyle? other)
    : height = other?.height,
      margin = other?.margin,
      padding = other?.padding,
      clipBehavior = other?.clipBehavior,
      overlayColor = other?.overlayColor,
      shadowColor = other?.shadowColor,
      elevation = other?.elevation,
      foregroundStyle = other?.foregroundStyle,
      foregroundColor = other?.foregroundColor,
      foregroundOpacity = other?.foregroundOpacity,
      foregroundAlpha = other?.foregroundAlpha,
      foregroundSpacing = other?.foregroundSpacing,
      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,
      avatarSize = other?.avatarSize,
      avatarForegroundStyle = other?.avatarForegroundStyle,
      avatarForegroundColor = other?.avatarForegroundColor,
      avatarBackgroundColor = other?.avatarBackgroundColor,
      avatarBorderRadius = other?.avatarBorderRadius,
      checkmarkColor = other?.checkmarkColor,
      checkmarkSize = other?.checkmarkSize,
      checkmarkWeight = other?.checkmarkWeight,
      checkmarkStyle = other?.checkmarkStyle,
      iconColor = other?.iconColor,
      iconOpacity = other?.iconOpacity,
      iconSize = other?.iconSize;