handles method
Returns true when this handler is responsible for module.
Implementation
@override
bool handles(String module) => switch (module) {
'std' ||
'std_collections' ||
'std_io' ||
'std_memory' ||
'std_convert' ||
'std_fs' ||
'std_time' ||
'std_concurrency' => true,
_ => false,
};