elementAtOrNull method

Coral<E?> elementAtOrNull(
  1. int index
)

Returns the indexth element reactively, or null if out of range.

Implementation

Coral<E?> elementAtOrNull(int index) =>
    _listCoral.map((list) => col.ListExtensions(list).elementAtOrNull(index));