appNotInstalledDialogMessage method

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

Message for the app not installed dialog

In en, this message translates to: 'The {appName} app is not installed on your device.'

Implementation

@override
String appNotInstalledDialogMessage(String appName) {
  return 'The $appName app is not installed on your device.';
}