AdwAboutWindow constructor

const AdwAboutWindow({
  1. Key? key,
  2. required Widget appIcon,
  3. String? appName,
  4. String? appVersion,
  5. Widget? nextPageIcon,
  6. Widget? launchEndIcon,
  7. double width = 360,
  8. @Deprecated('headerbar is deprecated, use the properties separately') AdwHeaderBar? headerbar(
    1. Widget?
    )?,
  9. HeaderBarStyle? headerBarStyle,
  10. List<Widget>? start,
  11. List<Widget>? end,
  12. AdwActions? actions,
  13. AdwControls? controls,
  14. String? copyright,
  15. String? issueTrackerLink,
  16. Text? license,
  17. List<AdwPreferencesGroup>? credits,
})

Implementation

const AdwAboutWindow({
  Key? key,
  required this.appIcon,
  this.appName,
  this.appVersion,
  this.nextPageIcon,
  this.launchEndIcon,
  this.width = 360,
  @Deprecated('headerbar is deprecated, use the properties separately')
      AdwHeaderBar? Function(Widget?)? headerbar,
  this.headerBarStyle,
  this.start,
  this.end,
  this.actions,
  this.controls,
  this.copyright,
  this.issueTrackerLink,
  this.license,
  this.credits,
}) : super(key: key);