listStyle property - CssStyleDeclarationBase class - dart:html library (original) (raw)

description

String getlistStyle

Gets the value of "list-style"

Implementation

String get listStyle => getPropertyValue('list-style');

setlistStyle (String value)

Sets the value of "list-style"

Implementation

set listStyle(String value) {
  setProperty('list-style', value, '');
}