fromAlternateInterfaces static method
Implementation
static List<USBAlternateInterface> fromAlternateInterfaces(
List<dynamic> alternateInterfaces) {
return alternateInterfaces
.map((e) => USBAlternateInterface(
alternateSetting: getProperty(e, "alternateSetting"),
endpoints: getProperty(e, "endpoints") == null
? null
: USBEndpoint.fromEndpoints(getProperty(e, "endpoints")),
))
.toList();
}