cancelBatchUpdate method
Cancel the pending batch updates
Implementation
@override
Future<bool> cancelBatchUpdate() async {
if (!_batchUpdateInProgress) {
return false;
}
_batchUpdateInProgress = false;
_pendingBatchUpdates.clear();
return true;
}