showFeatureUnavailable static method

void showFeatureUnavailable(
  1. BuildContext context
)

Implementation

static void showFeatureUnavailable(BuildContext context) {
  Helper.showAlert(
      message: "Feature unavailable for your plan",
      actions: [
        TextButton(
            onPressed: () {
              Navigator.pop(context);
            },
            child: const Text("Ok")),
      ],
      context: context);
}