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