begin property

  1. @override
double? get begin
override

The value this variable has at the beginning 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 begin => _interpolator.begin;
  1. @override
set begin (double? value)
override

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

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

Implementation

@override
set begin(double? value) => _interpolator.begin = value ?? 0;