ChangeGroup constructor

const ChangeGroup({
  1. required String title,
  2. List<String> changes = const [],
  3. String? bullet,
  4. double? bulletSpacing,
})

Creates a ChangeGroup for your Releases to display in the ReleaseNotesDialog.

Implementation

const ChangeGroup({
  required this.title,
  this.changes = const [],
  this.bullet,
  this.bulletSpacing,
});