checkAndUpdateAlert method

Future<void> checkAndUpdateAlert(
  1. BuildContext context
)

To show version update alert with respect to the configuration in web console. @param context BuildContext This method should be invoked after setting the theme and creating the navigator in a Flutter application. The in-app update functionality in Flutter does not currently provide support for Material3.

Implementation

Future<void> checkAndUpdateAlert(BuildContext context) async {
  return AppticsFlutterPlatform.instance.checkAndUpdateAlert(context);
}