copyWith method
Implementation
AddressLocation copyWith({
  String? comment
}) {
  return AddressLocation(
    comment ?? this.comment
  );
}AddressLocation copyWith({
  String? comment
}) {
  return AddressLocation(
    comment ?? this.comment
  );
}