begin property

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