translationSnap property

double? get translationSnap

Implementation

double? get translationSnap => _translationSnap;
set translationSnap (double? value)

Implementation

set translationSnap(double? value) {
  if (value != _translationSnap) {
    _translationSnap = value;

    scope.dispatchEvent(
        Event(type: 'translationSnap-changed', value: value));
    scope.dispatchEvent(_changeEvent);
  }
}