fallbackMaDays method
Implementation
void fallbackMaDays(int index) {
_i = index - 1;
if (_maHashs.isNotEmpty) {
if (index > _maHashs.length - 1) {
index = _maHashs.length - 1;
}
_maHashs = _maHashs.sublist(0, index);
}
}
void fallbackMaDays(int index) {
_i = index - 1;
if (_maHashs.isNotEmpty) {
if (index > _maHashs.length - 1) {
index = _maHashs.length - 1;
}
_maHashs = _maHashs.sublist(0, index);
}
}