UsbSubclass constructor

const UsbSubclass({
  1. required int id,
  2. required String name,
  3. required Iterable<UsbProgrammingInterface> programmingInterfaces,
})

Constructs a USB subclass.

Implementation

const UsbSubclass({
  required this.id,
  required this.name,
  required this.programmingInterfaces,
});