footerWidget property

Widget Function(BuildContext context)? get footerWidget

The builder for the footer widget

Implementation

Widget Function(BuildContext context)? get footerWidget => _footerWidget;
set footerWidget (Widget footerWidget(BuildContext context)?)

Implementation

set footerWidget(Widget Function(BuildContext context)? footerWidget) {
  _footerWidget = footerWidget;
  notifyListeners();
}