ScannerCharSet constructor

const ScannerCharSet({
  1. required List<String> active,
  2. String inactive = '⬝',
})

Creates a scanner character set.

Implementation

const ScannerCharSet({required this.active, this.inactive = '⬝'});