skip method

RxComputed<T?> skip(
  1. int count
)

Skip the first n values

Implementation

RxComputed<T?> skip(int count) {
  int skipped = 0;
  return computed(() {
    if (skipped < count) {
      skipped++;
      return null;
    }
    return value;
  });
}