copyWith method

AwsItemThemeBridge copyWith({
  1. Color? isSelectedColorIcon,
  2. Color? notSelectedColorIcon,
  3. TextStyle? labelStyle,
})

Implementation

AwsItemThemeBridge copyWith({
  Color? isSelectedColorIcon,
  Color? notSelectedColorIcon,
  TextStyle? labelStyle,
}) =>
    AwsItemThemeBridge(
      isSelectedColor: isSelectedColorIcon ?? this.isSelectedColor,
      notSelectedColor: notSelectedColorIcon ?? this.notSelectedColor,
      labelStyle: labelStyle ?? this.labelStyle,
    );