getLatitude method

double getLatitude()

Implementation

double getLatitude() {
  return myLocation == null || myLocation.isEmpty
      ? 0.0
      : double.parse(myLocation.split('_')[1]);
}