resumeWithError method

  1. @override
Future<CoreProgressResult> resumeWithError(
  1. String errorMessage
)

Resumes execution, injecting errorMessage as a Python exception.

Implementation

@override
Future<CoreProgressResult> resumeWithError(String errorMessage) async {
  final handle = _requireHandle('resumeWithError');
  final progress = _bindings.resumeWithError(handle, errorMessage);

  return _translateProgressResult(handle, progress);
}