indexOf method

int indexOf(
  1. LogSpan child
)

Gets the index of child in this span's children.

Returns -1 if child is not a child of this span.

Implementation

int indexOf(LogSpan child) => _children.indexOf(child);