neckHeight property

String neckHeight

Implementation

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

Implementation

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