setImageWidth method
Implementation
void setImageWidth(double value) {
if (_imageWidth != value) {
_imageWidth = value;
refresh();
if (!_isLoading) {
getMindMap()?.onChanged();
}
}
}
void setImageWidth(double value) {
if (_imageWidth != value) {
_imageWidth = value;
refresh();
if (!_isLoading) {
getMindMap()?.onChanged();
}
}
}