toNullableList method

List<T?> toNullableList()

Returns a list of nullable values

Implementation

List<T?> toNullableList() => map((option) => option.toNullable()).toList();