scrollData property

PanelScrollData scrollData

Contains ScrollController used by the panel and also contains some useful properties to use that controller.

Implementation

PanelScrollData get scrollData {
  if (!controlling) return PanelScrollData._empty();

  return PanelScrollData._(panel!._scrollController);
}