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

description

String getfont

override

Gets the value of "font"

Implementation

String get font => this._font;

setfont (String? value)

override

Sets the value of "font"

Implementation

set font(String? value) {
  _font = value == null ? '' : value;
}