copyWith method

AddressLocation copyWith({
  1. String? comment,
})

Implementation

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