course static method
Calculate the course (bearing) between two points in degrees in the range [0, 360].
Implementation
static core.double course(mapkit_geometry_point.Point firstPoint,
    mapkit_geometry_point.Point secondPoint) {
  return _course(
    firstPoint,
    secondPoint,
  );
}