marginBottom property

double? get marginBottom

Implementation

double? get marginBottom => _marginBottom?.get();
set marginBottom (dynamic v)

Implementation

set marginBottom(dynamic v) {
  if (_marginBottom != null) {
    _marginBottom!.set(v);
  } else if (v != null) {
    _marginBottom = DoubleObservable(Binding.toKey(id, 'marginbottom'), v,
        scope: scope, listener: onPropertyChange);
  }
}