UDormBedContractCreateParams constructor

UDormBedContractCreateParams({
  1. required List<int> tags,
  2. required DateTime startDate,
  3. required DateTime endDate,
  4. required String userId,
  5. required String bedId,
  6. String? id,
  7. double? deposit,
  8. double? rent,
  9. int? penaltyPrecentEveryDate,
  10. String? detail1,
  11. String? detail2,
  12. String? creatorId,
  13. List<String>? adminUserIds,
})

Implementation

UDormBedContractCreateParams({
  required this.tags,
  required this.startDate,
  required this.endDate,
  required this.userId,
  required this.bedId,
  this.id,
  this.deposit,
  this.rent,
  this.penaltyPrecentEveryDate,
  this.detail1,
  this.detail2,
  this.creatorId,
  this.adminUserIds,
});