submitEventually static method

Future<void> submitEventually({
  1. ParseClient? client,
  2. bool? autoSendSessionId,
})

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();
}