stickySectionIndex property

int? stickySectionIndex

get pinned header index

Implementation

int? get stickySectionIndex => _stickySectionIndex;
void stickySectionIndex=(int? value)

Implementation

set stickySectionIndex(int? value) {
  if (_stickySectionIndex == value) {
    return;
  }
  _stickySectionIndex = value;
  notifyListeners();
}