Subset Check: returns true if a is a subset of b.
a
b
Example: isSubset({1, 2}, {1, 2, 3}) => true
bool isSubset<T>(Set<T> a, Set<T> b) => b.containsAll(a);