close method

TickerFuture? close()

Close drawer

Implementation

TickerFuture? close() {
  if (mounted) {
    return _animationController.reverse();
  }
  return null;
}