copyWith method

AssignmentResultEntity copyWith({
  1. String? documentID,
  2. String? key,
  3. String? value,
})

Implementation

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