showWarningMessage method
Show a warning message.
Implementation
Future<String?> showWarningMessage(
String message, {
List<String>? actions,
}) async {
final resp = await _protocol.windowShowMessage(
type: 2,
message: message,
actions: actions,
);
return resp.result as String?;
}