whereNotNull method

RxComputed<T?> whereNotNull()

Filter out null values

Implementation

RxComputed<T?> whereNotNull() {
  return computed(() => value);
}