borderWidth property

String? get borderWidth

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

Implementation

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

Implementation

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