Locations constructor

const Locations({
  1. int? position,
  2. double? progression,
  3. double? totalProgression,
  4. List<String> fragments = const [],
  5. Map<String, dynamic> otherLocations = const {},
})

Implementation

const Locations({
  this.position,
  this.progression,
  this.totalProgression,
  this.fragments = const [],
  this.otherLocations = const {},
});