borderSpacing property

String? get borderSpacing

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 borderSpacing => _i5.getProperty(
      this,
      'borderSpacing',
    );
set borderSpacing (String? value)

Implementation

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