Option<Set<T>> letSetOrNone<T extends Object>(dynamic input) { return letIterableOrNone<T>(input).map((e) => Set.from(e)); }