artboard property

Artboard? get artboard
inherited

Implementation

Artboard? get artboard => _artboard;
set artboard (Artboard? value)
inherited

Implementation

set artboard(Artboard? value) {
  if (_artboard == value) {
    return;
  }

  _artboard?.internalRemoveAnimation(this);
  _artboard = value;
  _artboard?.internalAddAnimation(this);
}