getParseGeoPoint method

ParseGeoPoint? getParseGeoPoint(
  1. String key
)

Access a ParseGeoPoint value.

Returns null if there is no such key or if it is not a ParseGeoPoint.

Implementation

ParseGeoPoint? getParseGeoPoint(String key) {
  if (get(key) is! ParseGeoPoint) {
    return null;
  }

  return get(key);
}