minWidth property
override
Gets the value of "min-width"
Implementation
String get minWidth => this._minWidth;
override
Sets the value of "min-width"
Implementation
set minWidth(String? value) {
_minWidth = value == null ? '' : value;
}