showBottomBar method

void showBottomBar(
  1. AnimationController controller
)

Implementation

void showBottomBar(AnimationController controller) {
  controller.forward();

  if (onBottomBarShown != null) {
    onBottomBarShown!();
  }
}