Skip to content

Instantly share code, notes, and snippets.

@AlexV525
Created July 4, 2024 04:55
Show Gist options
  • Save AlexV525/37202b3e4ffcd8a152a438647b586488 to your computer and use it in GitHub Desktop.
Save AlexV525/37202b3e4ffcd8a152a438647b586488 to your computer and use it in GitHub Desktop.
Show packages in Flutter App asset NOTICES
import 'dart:io';
final separator = '-' * 80;
void main() {
final file = File('NOTICES').readAsStringSync();
final sections =
file.split('\n$separator\n').map((e) => e.split('\n').first).toSet();
print(sections.join('\n'));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment