copyWith method

ProfileAccentColors copyWith({
  1. List<int>? paletteColors,
  2. List<int>? backgroundColors,
  3. List<int>? storyColors,
})

Implementation

ProfileAccentColors copyWith({
  List<int>? paletteColors,
  List<int>? backgroundColors,
  List<int>? storyColors,
}) => ProfileAccentColors(
  paletteColors: paletteColors ?? this.paletteColors,
  backgroundColors: backgroundColors ?? this.backgroundColors,
  storyColors: storyColors ?? this.storyColors,
);