BackendRequestEntity constructor

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

Implementation

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