defaultStyle property

ChipStyle get defaultStyle

A reusable ChipStyle generated from the theme data.

Implementation

ChipStyle get defaultStyle => ChipStyle(
      backgroundColor: backgroundColor,
      selectedBackgroundColor: selectedColor,
      disabledBackgroundColor: disabledColor,
      textColor: textColor,
      selectedTextColor: selectedTextColor,
      disabledTextColor: disabledTextColor,
      borderColor: borderColor,
      selectedBorderColor: selectedBorderColor,
      disabledBorderColor: disabledBorderColor,
      padding: padding,
      margin: margin,
      borderRadius: borderRadius,
      iconSize: iconSize,
      textStyle: textStyle,
      elevation: elevation,
      selectedElevation: selectedElevation,
      shadowColor: shadowColor,
      borderWidth: borderWidth,
      selectedBorderWidth: selectedBorderWidth,
      duration: duration,
      curve: curve,
      pressedScale: pressedScale,
    );