AppUpdateWidget constructor

const AppUpdateWidget({
  1. Key? key,
  2. required Widget child,
  3. required GlobalKey<NavigatorState>? navigatorKey,
  4. required String googlePlayId,
  5. required String appStoreId,
  6. required bool isHomeownerApp,
})

Implementation

const AppUpdateWidget({
  super.key,
  required this.child,
  required this.navigatorKey,
  required this.googlePlayId,
  required this.appStoreId,
  required this.isHomeownerApp,
});