Store constructor

Store({
  1. int? createdDate,
  2. int? lastModifiedDate,
  3. String? id,
  4. String? name,
  5. String? description,
  6. List<int>? openTime,
  7. List<int>? closingTime,
  8. String? emailId,
  9. String? contactNumber,
  10. String? status,
  11. Address? address,
})

Implementation

Store({
  this.createdDate,
  this.lastModifiedDate,
  this.id,
  this.name,
  this.description,
  this.openTime,
  this.closingTime,
  this.emailId,
  this.contactNumber,
  this.status,
  this.address,
});