copy method
Implementation
Locations copy(
{int? position = _emptyIntValue,
double? progression = _emptyDoubleValue,
double? totalProgression = _emptyDoubleValue,
List<String>? fragments,
Map<String, dynamic>? otherLocations}) =>
Locations(
progression: progression.check(this.progression),
position: position.check(this.position),
totalProgression: totalProgression.check(this.totalProgression),
fragments: fragments ?? this.fragments,
otherLocations: otherLocations ?? this.otherLocations,
);