supportsDevice method
Do this controller support the specified device deviceType?
Implementation
bool supportsDevice(String deviceType) {
for (var package in SamplingPackageRegistry().packages) {
if (package.deviceType == deviceType) return true;
}
return false;
}