setImageWidth method

void setImageWidth(
  1. double value
)

Implementation

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