listStyleType 属性

String listStyleType

获取 "list-style-type" 的值

实现

String get listStyleType => getPropertyValue('list-style-type');
void listStyleType=(String value)

设置 "list-style-type" 的值

实现

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