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

description

String getfontSmoothing

Gets the value of "font-smoothing"

Implementation

String get fontSmoothing => getPropertyValue('font-smoothing');

setfontSmoothing (String value)

Sets the value of "font-smoothing"

Implementation

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