copyWith method

AwsThemeStandaloneDuo copyWith({
  1. Color? iconColor,
  2. TextStyle? style,
  3. Color? backgroundColor,
})

Implementation

AwsThemeStandaloneDuo copyWith({
  Color? iconColor,
  TextStyle? style,
  Color? backgroundColor,
}) =>
    AwsThemeStandaloneDuo(
        iconColor: iconColor ?? this.iconColor,
        style: style ?? this.style,
        backgroundColor: backgroundColor ?? this.backgroundColor);