resolveFutures method
Resolves pending futures with resultsJson and optional errorsJson.
Implementation
@override
Future<CoreProgressResult> resolveFutures(
String resultsJson,
String errorsJson,
) async {
final handle = _requireHandle('resolveFutures');
final progress = _bindings.resolveFutures(handle, resultsJson, errorsJson);
return _translateProgressResult(handle, progress);
}