copyWith method

AwsThemeTextDuo copyWith({
  1. TextStyle? style,
  2. Color? backgroundColor,
})

Implementation

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