concealBackLayer method

void concealBackLayer()

Animates the back layer to the "concealed" state.

Implementation

void concealBackLayer() {
  if (isBackLayerRevealed) {
    animationController.animateTo(1);
    widget.onBackLayerConcealed?.call();
  }
}