startIndex property

int startIndex

Implementation

int get startIndex {
  if (startBy == null) {
    return 0;
  }

  int result = images.indexOf(startBy!);
  return result == -1 ? 0 : result;
}