bottom method

dynamic bottom({
  1. double? toolbarHeight,
  2. double? preferredSizeHeight,
})

Implementation

bottom({
  double? toolbarHeight,
  double? preferredSizeHeight,
}) {
  _controllers[hashCode] = _ScrollAppBarController(
    this,
    toolbarHeight: toolbarHeight,
    preferredSizeHeight: preferredSizeHeight,
  );
}