Transition.slideFromRight constructor

Transition.slideFromRight({
  1. Curve curve = Curves.easeOut,
})

A transition that slides the child from the right.

Implementation

factory Transition.slideFromRight({Curve curve = Curves.easeOut}) =>
    Transition._from(TransitionBuilders.slideFromRight, curve);