margin property

double get margin

Implementation

double get margin => _margin?.get() ?? 24;
set margin (dynamic v)

Implementation

set margin(dynamic v) {
  if (_margin != null) {
    _margin!.set(v);
  } else if (v != null) {
    _margin = DoubleObservable(null, v, scope: scope);
  }
}