sectionRowIndex property

int get sectionRowIndex

Implementation

int get sectionRowIndex {
  final parent = this.parent!;
  final siblings = parent.children.whereType<TableCellElement>().toList();
  for (var i = 0; i < siblings.length; i++) {
    if (identical(siblings[i], this)) {
      return i;
    }
  }
  return -1;
}