execute method
Execute the cascade delete operation.
Implementation
Future<CascadeResult<T>> execute() async {
if (_userId == null) {
throw ArgumentError('User ID must be specified. Use forUser() method.');
}
return _manager.executeCascadeDeleteWithOptions(
_entityId,
_userId!,
_options,
);
}