showFeatureUnavailable static method

void showFeatureUnavailable()

Implementation

static void showFeatureUnavailable() {
  DialogUtils.showAlert(
      dialogStyle: AppStyleConfig.dialogStyle,
      message: getTranslated("featureNotAvailableForYourPlan"),
      actions: [
        TextButton(
            style: AppStyleConfig.dialogStyle.buttonStyle,
            onPressed: () {
              Navigator.of(buildContext).pop();
            },
            child: Text(getTranslated("ok"))),
      ]);
}