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

description

String getlistStyleImage

Gets the value of "list-style-image"

Implementation

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

setlistStyleImage (String value)

Sets the value of "list-style-image"

Implementation

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