windowShowMessage method
Show a message to the user.
Implementation
Future<BridgeResponse> windowShowMessage({
required int type,
required String message,
List<String>? actions,
}) {
return sendRequest('window/showMessage', {
'type': type,
'message': message,
'actions': ?actions,
});
}