showDialogWarningText method
void
showDialogWarningText({
- required Object themeOrId,
- required Object title,
- Object? body,
- List<
String> ? buttonTitles, - void onReturn()?,
inherited
Implementation
void showDialogWarningText({
required Object themeOrId,
required Object title,
Object? body,
List<String>? buttonTitles,
void Function(int)? onReturn
}) {
showDialogChoiceText(
themeOrId: themeOrId,
icon: AFUIStandardChoiceDialogIcon.warning,
title: title,
body: body,
buttonTitles: buttonTitles,
onReturn: onReturn
);
}