lerp static method
Linear interpolation of two LatLngs.
Implementation
static LatLng lerp(LatLng a, LatLng b, double t) {
final lat = l.lerp(a.latitude, b.latitude, t);
final lng = l.lerp(a.longitude, b.longitude, t);
return LatLng(lat, lng);
}