ChangelogInfo constructor

ChangelogInfo({
  1. required String versionName,
  2. required List<ChangelogSection> rawSection,
})

Implementation

ChangelogInfo(
    {required this.versionName, required List<ChangelogSection> rawSection}) {
  _mergeSection(rawSection);
}