any static method Null safety

bool any(
  1. List<bool?> args
)

Returns true if any entry is true, else false

Implementation

static bool any(List<bool?> args) => args.contains(true);