scan static method
Implementation
static List<UCode> scan(UBitMatrix matrix, UCodeScanOptions options) {
try {
final UCode? code = _scan(matrix);
return code == null ? const <UCode>[] : <UCode>[code];
} catch (_) {
return const <UCode>[];
}
}