Place constructor

Place({
  1. int? placeId,
  2. required String name,
  3. required String address,
  4. bool? enabled,
  5. String? companyType,
  6. String? email,
  7. DateTime? createDate,
  8. DateTime? changeDate,
  9. required PlaceApplicationUser applicationUser,
})

Returns a new Place instance.

Implementation

Place({
  this.placeId,
  required this.name,
  required this.address,
  this.enabled,
  this.companyType,
  this.email,
  this.createDate,
  this.changeDate,
  required this.applicationUser,
});