secondaryAnimation property

Animation<double>? secondaryAnimation

Get the page transition secondary animation

Implementation

Animation<double>? get secondaryAnimation {
  final r = getElementForInheritedWidgetOfExactType<SubRoute>()?.widget
      as SubRoute?;
  return r?.secondaryAnimation;
}