ProxyAnimation constructor

ProxyAnimation([
  1. Animation<double>? parent
])

Creates a proxy animation, optionally wrapping parent.

Implementation

ProxyAnimation([Animation<double>? parent])
  : _parent = parent ?? const AlwaysStoppedAnimation<double>(0.0);