getFiles method
Implementation
List<ReleasePackerFile> getFiles({String? platform}) {
Iterable<ReleasePackerFile> where = files;
if (platform != null) {
where = where.where((e) => e.matchesPlatform(platform));
}
return where.toList();
}
List<ReleasePackerFile> getFiles({String? platform}) {
Iterable<ReleasePackerFile> where = files;
if (platform != null) {
where = where.where((e) => e.matchesPlatform(platform));
}
return where.toList();
}