MapUserModel constructor

MapUserModel({
  1. required String address,
  2. required String phone,
  3. required LocationModel locationModel,
  4. String? floor,
  5. String? entrance,
  6. String? house,
  7. String? comment,
})

Implementation

MapUserModel({
  required this.address,
  required this.phone,
  required this.locationModel,
  this.floor,
  this.entrance,
  this.house,
  this.comment,
});