UMoadiResponse constructor

UMoadiResponse({
  1. required String id,
  2. required DateTime createdAt,
  3. required MoadiJsonData jsonData,
  4. required List<int> tags,
  5. required String name,
  6. required String economicCode,
  7. required String legalEntity,
  8. required String uniqueTaxCode,
  9. required String ownerName,
  10. required String ownerMobile,
  11. required String ownerNationalCode,
  12. required String userId,
  13. required List<String> adminUserIds,
  14. UUserResponse? creator,
  15. String? creatorId,
  16. String? nationalCode,
  17. String? postalCode,
  18. String? registrationDate,
  19. String? registrationNumber,
  20. String? address,
  21. int? startInvoiceNumber,
  22. String? introductionCode,
  23. UUserResponse? user,
})

Implementation

UMoadiResponse({
  required this.id,
  required this.createdAt,
  required this.jsonData,
  required this.tags,
  required this.name,
  required this.economicCode,
  required this.legalEntity,
  required this.uniqueTaxCode,
  required this.ownerName,
  required this.ownerMobile,
  required this.ownerNationalCode,
  required this.userId,
  required this.adminUserIds,
  this.creator,
  this.creatorId,
  this.nationalCode,
  this.postalCode,
  this.registrationDate,
  this.registrationNumber,
  this.address,
  this.startInvoiceNumber,
  this.introductionCode,
  this.user,
});