changeArtboard method
Implementation
@protected
@mustCallSuper
void changeArtboard(Artboard? value) {
_artboard?.removeComponent(this);
_artboard = value;
dependencyRoot = _artboard;
_artboard?.addComponent(this);
}
@protected
@mustCallSuper
void changeArtboard(Artboard? value) {
_artboard?.removeComponent(this);
_artboard = value;
dependencyRoot = _artboard;
_artboard?.addComponent(this);
}