copyWith method
Implementation
SawMatrix copyWith({
String? id,
SawAlternative? alternative,
List<SawRating>? ratings,
}) {
return SawMatrix(
id: id ?? this.id,
alternative: alternative ?? this.alternative,
ratings: ratings ?? this.ratings,
);
}