diff --git a/lib/src/objects/parse_object.dart b/lib/src/objects/parse_object.dart index d2949c890..a63341116 100644 --- a/lib/src/objects/parse_object.dart +++ b/lib/src/objects/parse_object.dart @@ -48,6 +48,11 @@ class ParseObject extends ParseBase implements ParseCloneable { } } + /// Fetches the object from the server into this object + Future fetch() async { + return await getObject(objectId); + } + /// Gets all objects from this table - Limited response at the moment Future getAll() async { try {