files method

List<String> files(
  1. String dirPath,
  2. String resId
)

Implementation

List<String> files(String dirPath, String resId) {
  final key = '${dirPath}_$resId';
  return _resIdFilesMap[key] ?? [];
}