BrowserParser constructor

BrowserParser({
  1. required String name,
  2. String? type,
  3. required List<String> regexes,
})

Implementation

BrowserParser({
  required this.name,
  this.type,
  required this.regexes,
});