revealBackLayer method

void revealBackLayer()

Animates the back layer to the "revealed" state.

Implementation

void revealBackLayer() {
  if (isBackLayerConcealed) {
    animationController.animateBack(-1);
    widget.onBackLayerRevealed?.call();
  }
}