toNullables method

Iter<T?> toNullables()

Implementation

@pragma("vm:prefer-inline")
Iter<T?> toNullables() {
  return map((opt) => opt.toNullable());
}