ReleaseNotesPage constructor

const ReleaseNotesPage({
  1. Key? key,
  2. required List<Release> releases,
  3. String title = 'Release Notes',
  4. String? bullet,
  5. double? bulletSpacing,
  6. double? releaseSpacing,
  7. double? releaseTitleSpacing,
  8. double? changeGroupSpacing,
  9. double? changeGroupTitleSpacing,
  10. double? changeSpacing,
  11. TextStyle? titleTextStyle,
  12. TextStyle? releaseTitleTextStyle,
  13. TextStyle? changeGroupTitleTextStyle,
  14. TextStyle? changeTextStyle,
})

Creates a ReleaseNotesPage.

Only the releases are required. All other arguments are optional.

Implementation

const ReleaseNotesPage({
  Key? key,
  required this.releases,
  this.title = 'Release Notes',
  this.bullet,
  this.bulletSpacing,
  this.releaseSpacing,
  this.releaseTitleSpacing,
  this.changeGroupSpacing,
  this.changeGroupTitleSpacing,
  this.changeSpacing,
  this.titleTextStyle,
  this.releaseTitleTextStyle,
  this.changeGroupTitleTextStyle,
  this.changeTextStyle,
}) : super(key: key);