copyWith method
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,
);