getSingleNameFromModel method

String getSingleNameFromModel(
  1. DeviceType type,
  2. String model
)

Get one marketing name for the given model. If multiple names match the model, the first match is selected.

Implementation

String getSingleNameFromModel(DeviceType type, String model) =>
    getNamesFromModel(type, model).getFirst();