extendedListDelegate property

  1. @override
ExtendedListDelegate get extendedListDelegate
override

A delegate that provides extensions within the ExtendedGridView/ExtendedList/WaterfallFlow.

Implementation

@override
ExtendedListDelegate get extendedListDelegate => _extendedListDelegate;
set extendedListDelegate (ExtendedListDelegate value)

Implementation

set extendedListDelegate(ExtendedListDelegate value) {
  if (_extendedListDelegate == value) {
    return;
  }
  if (_extendedListDelegate.closeToTrailing != value.closeToTrailing) {
    markNeedsLayout();
  }
  _extendedListDelegate = value;
}