fontSmoothing property

String get fontSmoothing

Gets the value of "font-smoothing"

Implementation

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

Sets the value of "font-smoothing"

Implementation

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