listStyleType property - CssStyleDeclarationBase class - dart:html library (original) (raw)
String getlistStyleType
Gets the value of "list-style-type"
Implementation
String get listStyleType => getPropertyValue('list-style-type');
setlistStyleType (String value)
Sets the value of "list-style-type"
Implementation
set listStyleType(String value) {
setProperty('list-style-type', value, '');
}