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

description

String gettextEmphasis

Gets the value of "text-emphasis"

Implementation

String get textEmphasis => getPropertyValue('text-emphasis');

settextEmphasis (String value)

Sets the value of "text-emphasis"

Implementation

set textEmphasis(String value) {
  setProperty('text-emphasis', value, '');
}