Coordinates constructor

Coordinates({
  1. required Location location,
  2. required List<RoundablePoint>? roundablePoints,
})

Implementation

Coordinates({
  required this.location,
  required this.roundablePoints,
});