startIndex property

int startIndex

Implementation

int get startIndex => _startIndex;
void startIndex=(int newValue)

Implementation

set startIndex(int newValue) {
  if (newValue < audios.length) {
    _startIndex = newValue;
  }
}