copyWith method

AwsThemeIconDuo copyWith({
  1. Color? color,
  2. Color? backgroundColor,
})

Implementation

AwsThemeIconDuo copyWith({
  Color? color,
  Color? backgroundColor,
}) =>
    AwsThemeIconDuo(
        color: color ?? this.color,
        backgroundColor: backgroundColor ?? this.backgroundColor);