Address constructor

Address({
  1. int? createdDate,
  2. String? id,
  3. String? storeId,
  4. String? addressLine1,
  5. String? addressLine2,
  6. String? latitude,
  7. String? longitude,
})

Implementation

Address({
  this.createdDate,
  this.id,
  this.storeId,
  this.addressLine1,
  this.addressLine2,
  this.latitude,
  this.longitude,
});