copyWith method
Implementation
MapUserModel copyWith({
String? address,
String? phone,
String? floor,
String? entrance,
String? house,
String? comment,
LocationModel? locationModel,
}) =>
MapUserModel(
address: address ?? this.address,
phone: phone ?? this.phone,
floor: floor ?? this.floor,
entrance: entrance ?? this.entrance,
house: house ?? this.house,
comment: comment ?? this.comment,
locationModel: locationModel ?? this.locationModel,
);