call method
Implementation
@override
Widget call() {
return Material(
color: palette.none,
child: Stack(children: [
$tranx.axis(Axis.vertical)
..animation(route.animation)
..decor($decor.expand.onTap(close), displayBarrier),
displayBackground.expand,
tranx.animation(route.animation)
..child(
secondaryTranx.axis(Axis.vertical)
..animation(route.secondaryAnimation)
..child(displayWrapper),
),
]),
);
}