checkForSubmitEventually function
Implementation
Future<void> checkForSubmitEventually() async {
if (_inSubmitEventually) return;
if (Parse.objectsExistForEventually) {
_inSubmitEventually = true;
await ParseObject.submitEventually();
_inSubmitEventually = false;
}
}