AddressSearchModel constructor

AddressSearchModel({
  1. String? id,
  2. double? latitude,
  3. double? longitude,
  4. int? limit,
  5. int? offset,
  6. double? maxRadius,
  7. String? tenantId,
  8. String? boundaryCode,
  9. bool? isDeleted = false,
})

Implementation

AddressSearchModel({
  this.id,
  this.latitude,
  this.longitude,
  this.limit,
  this.offset,
  this.maxRadius,
  this.tenantId,
  super.boundaryCode,
  super.isDeleted,
}) : super();