showDialogWarningText method

void showDialogWarningText({
  1. required Object themeOrId,
  2. required Object title,
  3. Object? body,
  4. List<String>? buttonTitles,
  5. void onReturn(
    1. int
    )?,
})
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
  );
}