deleteTableCancelable method

CancelableOperation<void> deleteTableCancelable(
  1. {required String tableName}
)

Cancelable version of deleteTable. See that method for more information.

Implementation

CancelableOperation<void> deleteTableCancelable({required String tableName}) {
  return _deleteTableCancelable(tableName: tableName)
      .then((_) => _geodatabaseFeatureTables.invalidateCache());
}