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

description

String getfont

Gets the value of "font"

Implementation

String get font => getPropertyValue('font');

setfont (String value)

Sets the value of "font"

Implementation

set font(String value) {
  setProperty('font', value, '');
}