showProgress method
Show a progress notification.
Implementation
Future<BridgeResponse> showProgress({
required String title,
String? message,
int? percentage,
bool cancellable = false,
}) {
return _protocol.sendRequest('vscode/showProgress', {
'title': title,
'message': ?message,
'percentage': ?percentage,
'cancellable': cancellable,
});
}