setImageHeight method

void setImageHeight(
  1. double value
)

Implementation

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