close method

void close()

Implementation

void close() {
  if (translateX != 0) {
    animationController.animateTo(0);
  }
  if (widget.closeTag == null) return;
  if (_ct!.value == LeftScrollStatus.open) {
    _ct!.value = LeftScrollStatus.close;
  }
}