copyWith method

AwsThemeBridge copyWith({
  1. AwsBarThemeBridge? bar,
  2. AwsItemThemeBridge? item,
  3. bool? painter,
  4. Color? footerDefaultColor,
})

Implementation

AwsThemeBridge copyWith(
        {AwsBarThemeBridge? bar,
        final AwsItemThemeBridge? item,
        bool? painter,
        Color? footerDefaultColor}) =>
    AwsThemeBridge(
        bar: bar ?? this.bar,
        item: item ?? this.item,
        painter: painter ?? this.painter,
        footerDefaultColor: footerDefaultColor ?? this.footerDefaultColor);