fromAlternateInterfaces static method

List<USBAlternateInterface> fromAlternateInterfaces(
  1. List alternateInterfaces
)

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