artboardSize property
Size
get
artboardSize
Implementation
Size get artboardSize => _artboardSize;
set
artboardSize
(Size value)
Implementation
set artboardSize(Size value) {
if (_artboardSize == value) {
return;
}
_artboardSize = value;
if (parent != null) {
markNeedsLayoutForSizedByParentChange();
}
}