dirsScheme constant
Mapping of directory names to URI schemes.
This map determines which URI scheme to use based on the directory structure:
- 'lib' directory maps to 'package:' URIs
- 'test', 'bin', and 'codegen' directories map to 'asset:' URIs
Implementation
static const Map<String, String> dirsScheme = <String, String>{
'lib': 'package',
'test': 'asset',
'bin': 'asset',
'codegen': 'asset',
};