nullFree method

Column<E> nullFree({
  1. E? replaceWith = null,
})

Returns Column without nulls. If replaceWith is set to null null-records are removed from the column, whereas they will replaced by its value otherwise.

Implementation

Column<E> nullFree({E? replaceWith = null}) =>
    Column<E>(nullFreeIterable(replaceWith: replaceWith).toList());