fallbackMaDays method

void fallbackMaDays(
  1. int index
)

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);
  }
}