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