asNullable method

RxComputed<T?> asNullable()

Convert to nullable type

Implementation

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