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) =>
    coral.map((source) => source.elementAtOrNull(index));