ParseBase class abstract

Implementers

Constructors

ParseBase()

Properties

createdAt DateTime?
Returns DateTime createdAt
no setter
hashCode int
The hash code for this object.
no setterinherited
objectId String?
Returns String objectId
getter/setter pair
parseClassName String
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
updatedAt DateTime?
Returns DateTime updatedAt
no setter

Methods

clearUnsavedChanges() → void
containsKey(String key) bool
containsValue(Object value) bool
copy() → dynamic
Creates a copy of this class
fromJson(Map<String, dynamic> objectData) → dynamic
fromJsonForManualObject(Map<String, dynamic> objectData) → dynamic
fromPin(String objectId) → dynamic
Saves item to simple key pair value storage
get<T>(String key, {T? defaultValue}) → T?
Gets type T from objectData
getACL() ParseACL
Access the ParseACL governing this object.
isDirty({String? key}) bool
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
pin() Future<bool>
Saves item to simple key pair value storage
saveInStorage(String key) Future<void>
Saves in storage
set<T>(String key, T value, {bool forceUpdate = true}) → void
Sets type T from objectData
setACL<ParseACL>(ParseACL acl) → void
Set the ParseACL governing this object.
toJson({bool full = false, bool forApiRQ = false, bool allowCustomObjectId = false}) Map<String, dynamic>
Converts object to String in JSON format
toPointer() Map<String, dynamic>
toString() String
A string representation of this object.
override
unpin({String? key}) Future<bool>
Saves item to simple key pair value storage

Operators

operator ==(Object other) bool
The equality operator.
inherited
operator [](String key) → dynamic
operator []=(String key, dynamic value) → void