onsurface property

String? get onsurface

Implementation

String? get onsurface => _onsurface?.get();
set onsurface (dynamic v)

Implementation

set onsurface(dynamic v) {
  if (_onsurface != null) {
    _onsurface!.set(v);
  } else if (v != null) {
    _onsurface = StringObservable(Binding.toKey('onsurface'), v, scope: scope, listener: onPropertyChange);
  }
}