entries method

  1. @override
Future<List<MiniProgramCacheEntry>> entries(
  1. String appId
)
override

Implementation

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