end property

  1. @override
ILatLng get 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
set 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();