hideBottom method

void hideBottom(
  1. bool flg
)

Implementation

void hideBottom(bool flg) {
  try {
    if (flg) {
      _animationController.forward();
    } else {
      _animationController.reverse();
    }
  } catch (e) {
    // Do nothing for linked profile page #86
  }
}