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