StoreModel constructor Null safety

StoreModel(
  1. {int? id,
  2. String? name,
  3. double? latitude,
  4. double? longitude,
  5. String? description,
  6. String? mobile,
  7. String? telephone}
)

Implementation

StoreModel({
  this.id,
  this.name,
  this.latitude,
  this.longitude,
  this.description,
  this.mobile,
  this.telephone,
});