end property

  1. @override
double end
override

The value this variable has at the end of the animation.

See the constructor for details about whether this property may be null (it varies from subclass to subclass).

Implementation

@override
double get end => interpolator.end;
  1. @override
void end=(double? value)
override

The value this variable has at the end of the animation.

See the constructor for details about whether this property may be null (it varies from subclass to subclass).

Implementation

@override
set end(double? value) => interpolator.end = value ?? 0;