neckWidth property

String neckWidth

Implementation

String get neckWidth => _neckWidth;
void neckWidth=(String value)

Implementation

set neckWidth(String value) {
  if (_neckWidth != value) {
    _neckWidth = value;
    markNeedsLayout();
  }
}