copyWith method
Implementation
ProjectAvatars copyWith({List<Avatar>? custom, List<Avatar>? system}) {
return ProjectAvatars(
custom: custom ?? this.custom,
system: system ?? this.system,
);
}
ProjectAvatars copyWith({List<Avatar>? custom, List<Avatar>? system}) {
return ProjectAvatars(
custom: custom ?? this.custom,
system: system ?? this.system,
);
}