findGuardPattern static method
Implementation
static List<int> findGuardPattern(
BitArray row,
int rowOffset,
bool whiteFirst,
List<int> pattern,
) {
return _findGuardPattern(
row,
rowOffset,
whiteFirst,
pattern,
List.filled(pattern.length, 0),
);
}