confirmationDialogMessage method

  1. @override
String confirmationDialogMessage(
  1. String appName
)
override

Message for the confirmation dialog

In en, this message translates to: 'Are you sure you want to launch {appName}?'

Implementation

@override
String confirmationDialogMessage(String appName) {
  return 'Are you sure you want to launch $appName?';
}