showWarning method
Show Warning MessageBox
Implementation
Future<bool> showWarning(
String message, {
String? title = "",
String? confirmText,
String? cancelText,
}) async {
if (title == "") {
title = 'Cảnh báo';
}
return await message.V_MsgBox(
this,
title: title,
type: CyberMsgBoxType.warning,
confirmText: confirmText,
cancelText: cancelText,
);
}