copyWith method
Implementation
Status copyWith({
String? type,
int? missing,
int? total,
int? other,
List<Term>? terms,
}) {
return Status(
type: type ?? this.type,
missing: missing ?? this.missing,
total: total ?? this.total,
other: other ?? this.other,
terms: terms ?? this.terms,
);
}