GeoPointWithOrientation constructor

GeoPointWithOrientation({
  1. double angle = 0.0,
  2. required double latitude,
  3. required double longitude,
})

Implementation

GeoPointWithOrientation({
  double angle = 0.0,
  required super.latitude,
  required super.longitude,
}) : angle = angle * pi / 180;