resumeAsFuture method
Converts the current pending call into a future and continues execution.
Implementation
@override
Future<MontyProgress> resumeAsFuture() async {
final response = await _send<_ProgressResponse>(
_ResumeAsFutureRequest(_nextId++),
);
return response.progress;
}