submitEventually static method
Implementation
static Future<void> submitEventually({
ParseClient? client,
bool? autoSendSessionId,
}) async {
await submitSaveEventually(
client: client,
autoSendSessionId: autoSendSessionId,
);
await submitDeleteEventually(
client: client,
autoSendSessionId: autoSendSessionId,
);
Parse.objectsExistForEventually = await checkObjectsExistForEventually();
}