listStyleType property

String get listStyleType
override

Gets the value of "list-style-type"

Implementation

String get listStyleType => this._listStyleType;
set listStyleType (String? value)
override

Sets the value of "list-style-type"

Implementation

set listStyleType(String? value) {
  _listStyleType = value == null ? '' : value;
}