resume method

Future<bool> resume()

Resumes the current task.

Calling this method will trigger a snapshot event with a TaskState.running state.

Implementation

Future<bool> resume() {
  throw UnimplementedError('resume() is not implemented');
}