end property

Rect? end
inherited

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

T? end;
  1. @override
void end=(Rect? 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(Rect? value) {
  if (value != end) {
    super.end = value;
    _dirty = true;
  }
}