entries method
Implementation
@override
Future<List<MiniProgramCacheEntry>> entries(String appId) async {
final normalizedAppId = _normalizeAppId(appId);
return _entries.values
.where((entry) => entry.appId == normalizedAppId)
.toList(growable: false);
}