supportsDevice method

bool supportsDevice(
  1. String deviceType
)

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;
}