finished property

void Function(Animation)? get finished

Implementation

void Function(_i3.Animation)? get finished =>
    (_i3.Animation p0) => _i4.callMethod(
          _i4.getProperty(
            this,
            'finished',
          ),
          r'call',
          [
            this,
            p0,
          ],
        );
set finished (void value(Animation)?)

Implementation

set finished(void Function(_i3.Animation)? value) {
  _i4.setProperty(
    this,
    'finished',
    value == null ? _i5.undefined : _i4.allowInterop(value),
  );
}