AssignmentResultModel constructor

AssignmentResultModel({
  1. required String documentID,
  2. String? key,
  3. String? value,
})

Implementation

AssignmentResultModel({
  required this.documentID,
  this.key,
  this.value,
});