copy method

Location copy({
  1. String? reference,
})

Makes a deep copy of this Location instance.

Implementation

Location copy({
  String? reference,
}) =>
    Location(
      reference: reference ?? this.reference,
    );