A list of boolean values using the Bool alias.
Bool
{@tool snippet}
BoolCollection flags = [true, false, true]; print(flags.where((f) => f).length); // 2
{@end-tool}
typedef BoolCollection = List<Bool>;