BackendRequestModel constructor

BackendRequestModel({
  1. required String documentID,
  2. String? description,
  3. required String appId,
  4. String? authorId,
  5. String? name,
  6. String? sendTo,
  7. List<Map<String, String>>? collections,
  8. bool? processed,
  9. RequestType? requestType,
})

Implementation

BackendRequestModel({
  required this.documentID,
  this.description,
  required this.appId,
  this.authorId,
  this.name,
  this.sendTo,
  this.collections,
  this.processed,
  this.requestType,
});