isNullIsland property

bool get isNullIsland

Whether these coordinates are at the null island (0,0). This is often a sign of missing/invalid data.

Implementation

bool get isNullIsland => latitude == 0.0 && longitude == 0.0;