width property

double get width

Implementation

double get width => width_?.get() ?? 3.5;
set width (dynamic v)

Implementation

set width(dynamic v) {
  if (width_ != null) {
    width_!.set(v);
  } else if (v != null) {
    width_ = DoubleObservable(Binding.toKey(id, 'width'), v, scope: scope);
  }
}