copyWith method
Implementation
@override
AssignmentResultModel copyWith({
String? documentID,
String? key,
String? value,
}) {
return AssignmentResultModel(
documentID: documentID ?? this.documentID,
key: key ?? this.key,
value: value ?? this.value,
);
}