columnToBool method
void
columnToBool(})
Implementation
void columnToBool(/* String | int */ index,
{List<String> trues = const ['true', 'True'],
List<String> falses = const ['false', 'False'],
bool? defaultValue}) {
index = _toIndex(index);
for (int r = 0; r < rows.length; r++) {
rows[r][index] = ColumnConverter.toBool(rows[r][index],
trues: trues, falses: falses, defaultValue: defaultValue);
}
}