GeocoderStatus$cast function

GeocoderStatus? GeocoderStatus$cast(
  1. dynamic value
)

Implementation

GeocoderStatus? GeocoderStatus$cast(value) {
  if (value == GeocoderStatus.ERROR) return GeocoderStatus.ERROR;
  if (value == GeocoderStatus.INVALID_REQUEST)
    return GeocoderStatus.INVALID_REQUEST;
  if (value == GeocoderStatus.OK) return GeocoderStatus.OK;
  if (value == GeocoderStatus.OVER_QUERY_LIMIT)
    return GeocoderStatus.OVER_QUERY_LIMIT;
  if (value == GeocoderStatus.REQUEST_DENIED)
    return GeocoderStatus.REQUEST_DENIED;
  if (value == GeocoderStatus.UNKNOWN_ERROR)
    return GeocoderStatus.UNKNOWN_ERROR;
  if (value == GeocoderStatus.ZERO_RESULTS) return GeocoderStatus.ZERO_RESULTS;
  return null;
}