easing property

EasingFunction? get easing

Implementation

_i3.EasingFunction? get easing => (
      _i2.num p0,
      _i2.num p1,
      _i2.num p2,
      _i2.num p3,
    ) =>
        _i4.callMethod(
          _i4.getProperty(
            this,
            'easing',
          ),
          r'call',
          [
            this,
            p0,
            p1,
            p2,
            p3,
          ],
        );
set easing (EasingFunction? value)

Implementation

set easing(_i3.EasingFunction? value) {
  _i4.setProperty(
    this,
    'easing',
    value == null ? _i5.undefined : _i4.allowInterop(value),
  );
}