UpgradeCard constructor

UpgradeCard({
  1. EdgeInsetsGeometry margin = const EdgeInsets.all(4.0),
  2. Key? key,
  3. AppcastConfiguration? appcastConfig,
  4. UpgraderMessages? messages,
  5. bool? debugAlwaysUpgrade,
  6. bool? debugDisplayOnce,
  7. bool? debugLogging,
  8. Duration? durationToAlertAgain,
  9. BoolCallback? onIgnore,
  10. BoolCallback? onLater,
  11. BoolCallback? onUpdate,
  12. Client? client,
  13. bool? showIgnore,
  14. bool? showLater,
  15. bool? showReleaseNotes,
  16. String? countryCode,
  17. String? minAppVersion,
})

Implementation

UpgradeCard({
  this.margin = const EdgeInsets.all(4.0),
  Key? key,
  AppcastConfiguration? appcastConfig,
  UpgraderMessages? messages,
  bool? debugAlwaysUpgrade,
  bool? debugDisplayOnce,
  bool? debugLogging,
  Duration? durationToAlertAgain,
  BoolCallback? onIgnore,
  BoolCallback? onLater,
  BoolCallback? onUpdate,
  http.Client? client,
  bool? showIgnore,
  bool? showLater,
  bool? showReleaseNotes,
  String? countryCode,
  String? minAppVersion,
}) : super(
        key: key,
        appcastConfig: appcastConfig,
        messages: messages,
        debugDisplayAlways: debugAlwaysUpgrade,
        debugDisplayOnce: debugDisplayOnce,
        debugLogging: debugLogging,
        durationToAlertAgain: durationToAlertAgain,
        onIgnore: onIgnore,
        onLater: onLater,
        onUpdate: onUpdate,
        client: client,
        showIgnore: showIgnore,
        showLater: showLater,
        showReleaseNotes: showReleaseNotes,
        countryCode: countryCode,
        minAppVersion: minAppVersion,
      );