getParseFile method

ParseFile? getParseFile(
  1. String key
)

Access a ParseFile value.

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

Implementation

ParseFile? getParseFile(String key) {
  if (get(key) is! ParseFile) {
    return null;
  }

  return get(key);
}