isSelected method

bool isSelected(
  1. int dotIndex
)

Implementation

bool isSelected(int dotIndex) {
  if(widget.singleSelection != true) {
    return dotIndex <= _currentPageIndex;
  }
  return dotIndex == _currentPageIndex;
}