viewportScale property

double get viewportScale

Used to offset the UI by a given value

Usefull if you want to wrap VSNodeView in an InteractiveViewer or the sorts, to assure context menu and node interactions work as planned

Implementation

double get viewportScale => _viewportScale;
set viewportScale (dynamic value)

Implementation

set viewportScale(value) {
  _viewportScale = value;
  notifyListeners();
}