copyWith method

  1. @override
AssignmentResultModel copyWith({
  1. String? documentID,
  2. String? key,
  3. String? value,
})
override

Implementation

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