onswiperight property

String? get onswiperight

Implementation

String? get onswiperight {
  return _onswiperight?.get();
}
set onswiperight (dynamic v)

Implementation

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