PlaceIndexResponse constructor

PlaceIndexResponse({
  1. int? placeId,
  2. String? name,
  3. String? address,
  4. String? email,
  5. bool? enabled,
  6. String? companyType,
  7. DateTime? createDate,
  8. DateTime? changeDate,
  9. String? userId,
  10. String? userName,
})

Returns a new PlaceIndexResponse instance.

Implementation

PlaceIndexResponse({
  this.placeId,
  this.name,
  this.address,
  this.email,
  this.enabled,
  this.companyType,
  this.createDate,
  this.changeDate,
  this.userId,
  this.userName,
});