finalBearingBetweenTwoGeoPoints method
Calculate the final bearing from point l1 to point l2.
Given two geographic points l1 and l2, this function calculates and returns the final bearing from point l1 to point l2 in degrees.
Implementation
num finalBearingBetweenTwoGeoPoints(LatLng l1, LatLng l2) {
return BearingBetweenTwoGeoPoints.finalBearingBetweenTwoGeoPoints(l1, l2);
}