Returns true if the given latitude is between -90 and 90 (inclusive).
true
latitude
static bool isValidLatitude(double latitude) => latitude >= -90.0 && latitude <= 90.0;