slice method

Coral<List<E>> slice(
  1. int start, [
  2. int? end
])

Returns a sublist of this list reactively.

Implementation

Coral<List<E>> slice(int start, [int? end]) => sublist(start, end);