delete method Null safety
Deletes this object.
Implementation
Future delete() async {
if (objectId == null) {
return;
}
String path = 'classes/$className/$objectId';
await LeanCloud._httpClient.delete(path);
}
Deletes this object.
Future delete() async {
if (objectId == null) {
return;
}
String path = 'classes/$className/$objectId';
await LeanCloud._httpClient.delete(path);
}