isScrollable property

bool get isScrollable

Implementation

bool get isScrollable {
  if (!effectiveScrollController.hasClients) {
    return false;
  }
  return effectiveScrollController.position.maxScrollExtent > 0;
}