neckHeight property

String get neckHeight

Implementation

String get neckHeight => _neckHeight;
set neckHeight (String value)

Implementation

set neckHeight(String value) {
  if (_neckHeight != value) {
    _neckHeight = value;
    markNeedsLayout();
  }
}