DeviceParser constructor

DeviceParser({
  1. required String type,
  2. required String vendor,
  3. required String model,
  4. required List<String> regexes,
})

Implementation

DeviceParser({
  required this.type,
  required this.vendor,
  required this.model,
  required this.regexes,
});