end property

  1. @override
ILatLng 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
ILatLng get end => interpolator.end;
  1. @override
void end=(ILatLng? 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(ILatLng? value) => interpolator.end = value ?? ILatLng.empty();