StoreFilterModel constructor Null safety

StoreFilterModel(
  1. {double? latitude,
  2. double? longitude,
  3. int? cityId,
  4. int? distance}
)

Implementation

StoreFilterModel({
  this.latitude,
  this.longitude,
  this.cityId,
  this.distance,
});