copyWith method

CardCarouselTheme copyWith({
  1. int? sharpness,
})

Creates a copy of this theme but with the given fields replaced with new values.

Implementation

CardCarouselTheme copyWith({int? sharpness}) =>
    CardCarouselTheme(sharpness: sharpness ?? this.sharpness);