outlineWidth property

String? get outlineWidth

CSS styling property that will be applied to text enclosed by a decoration. Better use 'outline' for setting one or more of the individual outline properties.

Implementation

_i2.String? get outlineWidth => _i5.getProperty(
      this,
      'outlineWidth',
    );
set outlineWidth (String? value)

Implementation

set outlineWidth(_i2.String? value) {
  _i5.setProperty(
    this,
    'outlineWidth',
    value ?? _i6.undefined,
  );
}