defaultReleaseNotesLimits top-level constant
The platforms a release note is filtered for, and the cap each one carries.
Both App Store platforms are listed even though their limit is identical:
the filtering differs, so a [macos]-prefixed entry and an [ios]-prefixed
one produce different text from the same section, and only checking both
checks both.
Implementation
const defaultReleaseNotesLimits = <String, int>{
'android': playReleaseNotesLimit,
'ios': appStoreReleaseNotesLimit,
'macos': appStoreReleaseNotesLimit,
};