Store constructor

Store({
  1. String? createdByUserName,
  2. String? updatedByUserName,
  3. String? createdBy,
  4. String? createdDate,
  5. String? updatedBy,
  6. String? updatedDate,
  7. int? id,
  8. String? ownerId,
  9. String? description,
  10. Address? address,
  11. String? openingTime,
  12. String? closingTime,
  13. String? emailId,
  14. String? contactNumber,
  15. String? hasStoreInventory,
  16. int? defaultAmount,
  17. Status? status,
  18. String? name,
  19. bool? archived,
  20. String? location,
  21. String? createdByName,
  22. String? updatedByName,
  23. String? agentOwnerId,
  24. List<Denominations>? denominations,
  25. String? glCode,
  26. Department? department,
  27. String? satchelNumber,
  28. List<String>? satchelNumbers,
  29. bool? activeStoreForUser,
  30. List<SatchelInfoList>? satchelInfoList,
})

Implementation

Store(
    {this.createdByUserName, this.updatedByUserName, this.createdBy, this.createdDate, this.updatedBy, this.updatedDate, this.id, this.ownerId, this.description, this.address, this.openingTime, this.closingTime, this.emailId, this.contactNumber, this.hasStoreInventory, this.defaultAmount, this.status, this.name, this.archived, this.location, this.createdByName, this.updatedByName, this.agentOwnerId, this.denominations, this.glCode, this.department, this.satchelNumber, this.satchelNumbers, this.activeStoreForUser, this.satchelInfoList});