expand method

Future? expand()

Expand the bottom sheet built by BottomSheetBar.expandedBuilder

Implementation

Future? expand() => _animationController
    ?.fling(velocity: 1.0)
    .then((_) => _animationController?.animateTo(1.0));