onswipeup property

String? get onswipeup

Implementation

String? get onswipeup {
  return _onswipeup?.get();
}
set onswipeup (dynamic v)

Implementation

set onswipeup(dynamic v) {
  if (_onswipeup != null) {
    _onswipeup!.set(v);
  } else if (v != null) {
    _onswipeup = StringObservable(Binding.toKey(id, 'onswipeup'), v,
        scope: scope, listener: onPropertyChange, lazyEval: true);
  }
}