Skip to content

CssStyleDeclaration ​

class CssStyleDeclaration extends JavaScriptObject with CssStyleDeclarationBase

Annotations: @Native.new("CSSStyleDeclaration,MSStyleCSSProperties,CSS2Properties")

Constructors ​

CssStyleDeclaration() factory ​

factory CssStyleDeclaration()
Implementation
dart
factory CssStyleDeclaration() => new CssStyleDeclaration.css('');

CssStyleDeclaration.css() factory ​

factory CssStyleDeclaration.css(String css)
Implementation
dart
factory CssStyleDeclaration.css(String css) {
  final style = new DivElement().style;
  style.cssText = css;
  return style;
}

Properties ​

alignContent read / write inherited ​

String get alignContent

getter:

Gets the value of "align-content"

setter:

Sets the value of "align-content"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get alignContent => getPropertyValue('align-content');

set alignContent(String value) {
  setProperty('align-content', value, '');
}

alignItems read / write inherited ​

String get alignItems

getter:

Gets the value of "align-items"

setter:

Sets the value of "align-items"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get alignItems => getPropertyValue('align-items');

set alignItems(String value) {
  setProperty('align-items', value, '');
}

alignSelf read / write inherited ​

String get alignSelf

getter:

Gets the value of "align-self"

setter:

Sets the value of "align-self"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get alignSelf => getPropertyValue('align-self');

set alignSelf(String value) {
  setProperty('align-self', value, '');
}

animation read / write inherited ​

String get animation

getter:

Gets the value of "animation"

setter:

Sets the value of "animation"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get animation => getPropertyValue('animation');

set animation(String value) {
  setProperty('animation', value, '');
}

animationDelay read / write inherited ​

String get animationDelay

getter:

Gets the value of "animation-delay"

setter:

Sets the value of "animation-delay"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get animationDelay => getPropertyValue('animation-delay');

set animationDelay(String value) {
  setProperty('animation-delay', value, '');
}

animationDirection read / write inherited ​

String get animationDirection

getter:

Gets the value of "animation-direction"

setter:

Sets the value of "animation-direction"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get animationDirection => getPropertyValue('animation-direction');

set animationDirection(String value) {
  setProperty('animation-direction', value, '');
}

animationDuration read / write inherited ​

String get animationDuration

getter:

Gets the value of "animation-duration"

setter:

Sets the value of "animation-duration"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get animationDuration => getPropertyValue('animation-duration');

set animationDuration(String value) {
  setProperty('animation-duration', value, '');
}

animationFillMode read / write inherited ​

String get animationFillMode

getter:

Gets the value of "animation-fill-mode"

setter:

Sets the value of "animation-fill-mode"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get animationFillMode => getPropertyValue('animation-fill-mode');

set animationFillMode(String value) {
  setProperty('animation-fill-mode', value, '');
}

animationIterationCount read / write inherited ​

String get animationIterationCount

getter:

Gets the value of "animation-iteration-count"

setter:

Sets the value of "animation-iteration-count"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get animationIterationCount =>
    getPropertyValue('animation-iteration-count');

set animationIterationCount(String value) {
  setProperty('animation-iteration-count', value, '');
}

animationName read / write inherited ​

String get animationName

getter:

Gets the value of "animation-name"

setter:

Sets the value of "animation-name"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get animationName => getPropertyValue('animation-name');

set animationName(String value) {
  setProperty('animation-name', value, '');
}

animationPlayState read / write inherited ​

String get animationPlayState

getter:

Gets the value of "animation-play-state"

setter:

Sets the value of "animation-play-state"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get animationPlayState => getPropertyValue('animation-play-state');

set animationPlayState(String value) {
  setProperty('animation-play-state', value, '');
}

animationTimingFunction read / write inherited ​

String get animationTimingFunction

getter:

Gets the value of "animation-timing-function"

setter:

Sets the value of "animation-timing-function"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get animationTimingFunction =>
    getPropertyValue('animation-timing-function');

set animationTimingFunction(String value) {
  setProperty('animation-timing-function', value, '');
}

appearance read / write inherited ​

String get appearance

getter:

Gets the value of "appearance"

setter:

Sets the value of "appearance"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get appearance => getPropertyValue('appearance');

set appearance(String value) {
  setProperty('appearance', value, '');
}

appRegion read / write inherited ​

String get appRegion

getter:

Gets the value of "app-region"

setter:

Sets the value of "app-region"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get appRegion => getPropertyValue('app-region');

set appRegion(String value) {
  setProperty('app-region', value, '');
}

aspectRatio read / write inherited ​

String get aspectRatio

getter:

Gets the value of "aspect-ratio"

setter:

Sets the value of "aspect-ratio"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get aspectRatio => getPropertyValue('aspect-ratio');

set aspectRatio(String value) {
  setProperty('aspect-ratio', value, '');
}

backfaceVisibility read / write inherited ​

String get backfaceVisibility

getter:

Gets the value of "backface-visibility"

setter:

Sets the value of "backface-visibility"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get backfaceVisibility => getPropertyValue('backface-visibility');

set backfaceVisibility(String value) {
  setProperty('backface-visibility', value, '');
}

background read / write override ​

String get background

getter:

Gets the value of "background"

setter:

Sets the value of "background"

Implementation
dart
String get background => this._background;

set background(String? value) {
  _background = value == null ? '' : value;
}

backgroundAttachment read / write override ​

String get backgroundAttachment

getter:

Gets the value of "background-attachment"

setter:

Sets the value of "background-attachment"

Implementation
dart
String get backgroundAttachment => this._backgroundAttachment;

set backgroundAttachment(String? value) {
  _backgroundAttachment = value == null ? '' : value;
}

backgroundBlendMode read / write inherited ​

String get backgroundBlendMode

getter:

Gets the value of "background-blend-mode"

setter:

Sets the value of "background-blend-mode"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get backgroundBlendMode => getPropertyValue('background-blend-mode');

set backgroundBlendMode(String value) {
  setProperty('background-blend-mode', value, '');
}

backgroundClip read / write inherited ​

String get backgroundClip

getter:

Gets the value of "background-clip"

setter:

Sets the value of "background-clip"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get backgroundClip => getPropertyValue('background-clip');

set backgroundClip(String value) {
  setProperty('background-clip', value, '');
}

backgroundColor read / write override ​

String get backgroundColor

getter:

Gets the value of "background-color"

setter:

Sets the value of "background-color"

Implementation
dart
String get backgroundColor => this._backgroundColor;

set backgroundColor(String? value) {
  _backgroundColor = value == null ? '' : value;
}

backgroundComposite read / write inherited ​

String get backgroundComposite

getter:

Gets the value of "background-composite"

setter:

Sets the value of "background-composite"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get backgroundComposite => getPropertyValue('background-composite');

set backgroundComposite(String value) {
  setProperty('background-composite', value, '');
}

backgroundImage read / write override ​

String get backgroundImage

getter:

Gets the value of "background-image"

setter:

Sets the value of "background-image"

Implementation
dart
String get backgroundImage => this._backgroundImage;

set backgroundImage(String? value) {
  _backgroundImage = value == null ? '' : value;
}

backgroundOrigin read / write inherited ​

String get backgroundOrigin

getter:

Gets the value of "background-origin"

setter:

Sets the value of "background-origin"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get backgroundOrigin => getPropertyValue('background-origin');

set backgroundOrigin(String value) {
  setProperty('background-origin', value, '');
}

backgroundPosition read / write override ​

String get backgroundPosition

getter:

Gets the value of "background-position"

setter:

Sets the value of "background-position"

Implementation
dart
String get backgroundPosition => this._backgroundPosition;

set backgroundPosition(String? value) {
  _backgroundPosition = value == null ? '' : value;
}

backgroundPositionX read / write inherited ​

String get backgroundPositionX

getter:

Gets the value of "background-position-x"

setter:

Sets the value of "background-position-x"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get backgroundPositionX => getPropertyValue('background-position-x');

set backgroundPositionX(String value) {
  setProperty('background-position-x', value, '');
}

backgroundPositionY read / write inherited ​

String get backgroundPositionY

getter:

Gets the value of "background-position-y"

setter:

Sets the value of "background-position-y"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get backgroundPositionY => getPropertyValue('background-position-y');

set backgroundPositionY(String value) {
  setProperty('background-position-y', value, '');
}

backgroundRepeat read / write override ​

String get backgroundRepeat

getter:

Gets the value of "background-repeat"

setter:

Sets the value of "background-repeat"

Implementation
dart
String get backgroundRepeat => this._backgroundRepeat;

set backgroundRepeat(String? value) {
  _backgroundRepeat = value == null ? '' : value;
}

backgroundRepeatX read / write inherited ​

String get backgroundRepeatX

getter:

Gets the value of "background-repeat-x"

setter:

Sets the value of "background-repeat-x"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get backgroundRepeatX => getPropertyValue('background-repeat-x');

set backgroundRepeatX(String value) {
  setProperty('background-repeat-x', value, '');
}

backgroundRepeatY read / write inherited ​

String get backgroundRepeatY

getter:

Gets the value of "background-repeat-y"

setter:

Sets the value of "background-repeat-y"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get backgroundRepeatY => getPropertyValue('background-repeat-y');

set backgroundRepeatY(String value) {
  setProperty('background-repeat-y', value, '');
}

backgroundSize read / write inherited ​

String get backgroundSize

getter:

Gets the value of "background-size"

setter:

Sets the value of "background-size"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get backgroundSize => getPropertyValue('background-size');

set backgroundSize(String value) {
  setProperty('background-size', value, '');
}

border read / write override ​

String get border

getter:

Gets the value of "border"

setter:

Sets the value of "border"

Implementation
dart
String get border => this._border;

set border(String? value) {
  _border = value == null ? '' : value;
}

borderAfter read / write inherited ​

String get borderAfter

getter:

Gets the value of "border-after"

setter:

Sets the value of "border-after"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get borderAfter => getPropertyValue('border-after');

set borderAfter(String value) {
  setProperty('border-after', value, '');
}

borderAfterColor read / write inherited ​

String get borderAfterColor

getter:

Gets the value of "border-after-color"

setter:

Sets the value of "border-after-color"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get borderAfterColor => getPropertyValue('border-after-color');

set borderAfterColor(String value) {
  setProperty('border-after-color', value, '');
}

borderAfterStyle read / write inherited ​

String get borderAfterStyle

getter:

Gets the value of "border-after-style"

setter:

Sets the value of "border-after-style"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get borderAfterStyle => getPropertyValue('border-after-style');

set borderAfterStyle(String value) {
  setProperty('border-after-style', value, '');
}

borderAfterWidth read / write inherited ​

String get borderAfterWidth

getter:

Gets the value of "border-after-width"

setter:

Sets the value of "border-after-width"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get borderAfterWidth => getPropertyValue('border-after-width');

set borderAfterWidth(String value) {
  setProperty('border-after-width', value, '');
}

borderBefore read / write inherited ​

String get borderBefore

getter:

Gets the value of "border-before"

setter:

Sets the value of "border-before"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get borderBefore => getPropertyValue('border-before');

set borderBefore(String value) {
  setProperty('border-before', value, '');
}

borderBeforeColor read / write inherited ​

String get borderBeforeColor

getter:

Gets the value of "border-before-color"

setter:

Sets the value of "border-before-color"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get borderBeforeColor => getPropertyValue('border-before-color');

set borderBeforeColor(String value) {
  setProperty('border-before-color', value, '');
}

borderBeforeStyle read / write inherited ​

String get borderBeforeStyle

getter:

Gets the value of "border-before-style"

setter:

Sets the value of "border-before-style"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get borderBeforeStyle => getPropertyValue('border-before-style');

set borderBeforeStyle(String value) {
  setProperty('border-before-style', value, '');
}

borderBeforeWidth read / write inherited ​

String get borderBeforeWidth

getter:

Gets the value of "border-before-width"

setter:

Sets the value of "border-before-width"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get borderBeforeWidth => getPropertyValue('border-before-width');

set borderBeforeWidth(String value) {
  setProperty('border-before-width', value, '');
}

borderBottom read / write override ​

String get borderBottom

getter:

Gets the value of "border-bottom"

setter:

Sets the value of "border-bottom"

Implementation
dart
String get borderBottom => this._borderBottom;

set borderBottom(String? value) {
  _borderBottom = value == null ? '' : value;
}

borderBottomColor read / write override ​

String get borderBottomColor

getter:

Gets the value of "border-bottom-color"

setter:

Sets the value of "border-bottom-color"

Implementation
dart
String get borderBottomColor => this._borderBottomColor;

set borderBottomColor(String? value) {
  _borderBottomColor = value == null ? '' : value;
}

borderBottomLeftRadius read / write inherited ​

String get borderBottomLeftRadius

getter:

Gets the value of "border-bottom-left-radius"

setter:

Sets the value of "border-bottom-left-radius"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get borderBottomLeftRadius =>
    getPropertyValue('border-bottom-left-radius');

set borderBottomLeftRadius(String value) {
  setProperty('border-bottom-left-radius', value, '');
}

borderBottomRightRadius read / write inherited ​

String get borderBottomRightRadius

getter:

Gets the value of "border-bottom-right-radius"

setter:

Sets the value of "border-bottom-right-radius"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get borderBottomRightRadius =>
    getPropertyValue('border-bottom-right-radius');

set borderBottomRightRadius(String value) {
  setProperty('border-bottom-right-radius', value, '');
}

borderBottomStyle read / write override ​

String get borderBottomStyle

getter:

Gets the value of "border-bottom-style"

setter:

Sets the value of "border-bottom-style"

Implementation
dart
String get borderBottomStyle => this._borderBottomStyle;

set borderBottomStyle(String? value) {
  _borderBottomStyle = value == null ? '' : value;
}

borderBottomWidth read / write override ​

String get borderBottomWidth

getter:

Gets the value of "border-bottom-width"

setter:

Sets the value of "border-bottom-width"

Implementation
dart
String get borderBottomWidth => this._borderBottomWidth;

set borderBottomWidth(String? value) {
  _borderBottomWidth = value == null ? '' : value;
}

borderCollapse read / write override ​

String get borderCollapse

getter:

Gets the value of "border-collapse"

setter:

Sets the value of "border-collapse"

Implementation
dart
String get borderCollapse => this._borderCollapse;

set borderCollapse(String? value) {
  _borderCollapse = value == null ? '' : value;
}

borderColor read / write override ​

String get borderColor

getter:

Gets the value of "border-color"

setter:

Sets the value of "border-color"

Implementation
dart
String get borderColor => this._borderColor;

set borderColor(String? value) {
  _borderColor = value == null ? '' : value;
}

borderEnd read / write inherited ​

String get borderEnd

getter:

Gets the value of "border-end"

setter:

Sets the value of "border-end"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get borderEnd => getPropertyValue('border-end');

set borderEnd(String value) {
  setProperty('border-end', value, '');
}

borderEndColor read / write inherited ​

String get borderEndColor

getter:

Gets the value of "border-end-color"

setter:

Sets the value of "border-end-color"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get borderEndColor => getPropertyValue('border-end-color');

set borderEndColor(String value) {
  setProperty('border-end-color', value, '');
}

borderEndStyle read / write inherited ​

String get borderEndStyle

getter:

Gets the value of "border-end-style"

setter:

Sets the value of "border-end-style"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get borderEndStyle => getPropertyValue('border-end-style');

set borderEndStyle(String value) {
  setProperty('border-end-style', value, '');
}

borderEndWidth read / write inherited ​

String get borderEndWidth

getter:

Gets the value of "border-end-width"

setter:

Sets the value of "border-end-width"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get borderEndWidth => getPropertyValue('border-end-width');

set borderEndWidth(String value) {
  setProperty('border-end-width', value, '');
}

borderFit read / write inherited ​

String get borderFit

getter:

Gets the value of "border-fit"

setter:

Sets the value of "border-fit"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get borderFit => getPropertyValue('border-fit');

set borderFit(String value) {
  setProperty('border-fit', value, '');
}

borderHorizontalSpacing read / write inherited ​

String get borderHorizontalSpacing

getter:

Gets the value of "border-horizontal-spacing"

setter:

Sets the value of "border-horizontal-spacing"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get borderHorizontalSpacing =>
    getPropertyValue('border-horizontal-spacing');

set borderHorizontalSpacing(String value) {
  setProperty('border-horizontal-spacing', value, '');
}

borderImage read / write inherited ​

String get borderImage

getter:

Gets the value of "border-image"

setter:

Sets the value of "border-image"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get borderImage => getPropertyValue('border-image');

set borderImage(String value) {
  setProperty('border-image', value, '');
}

borderImageOutset read / write inherited ​

String get borderImageOutset

getter:

Gets the value of "border-image-outset"

setter:

Sets the value of "border-image-outset"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get borderImageOutset => getPropertyValue('border-image-outset');

set borderImageOutset(String value) {
  setProperty('border-image-outset', value, '');
}

borderImageRepeat read / write inherited ​

String get borderImageRepeat

getter:

Gets the value of "border-image-repeat"

setter:

Sets the value of "border-image-repeat"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get borderImageRepeat => getPropertyValue('border-image-repeat');

set borderImageRepeat(String value) {
  setProperty('border-image-repeat', value, '');
}

borderImageSlice read / write inherited ​

String get borderImageSlice

getter:

Gets the value of "border-image-slice"

setter:

Sets the value of "border-image-slice"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get borderImageSlice => getPropertyValue('border-image-slice');

set borderImageSlice(String value) {
  setProperty('border-image-slice', value, '');
}

borderImageSource read / write inherited ​

String get borderImageSource

getter:

Gets the value of "border-image-source"

setter:

Sets the value of "border-image-source"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get borderImageSource => getPropertyValue('border-image-source');

set borderImageSource(String value) {
  setProperty('border-image-source', value, '');
}

borderImageWidth read / write inherited ​

String get borderImageWidth

getter:

Gets the value of "border-image-width"

setter:

Sets the value of "border-image-width"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get borderImageWidth => getPropertyValue('border-image-width');

set borderImageWidth(String value) {
  setProperty('border-image-width', value, '');
}

borderLeft read / write override ​

String get borderLeft

getter:

Gets the value of "border-left"

setter:

Sets the value of "border-left"

Implementation
dart
String get borderLeft => this._borderLeft;

set borderLeft(String? value) {
  _borderLeft = value == null ? '' : value;
}

borderLeftColor read / write override ​

String get borderLeftColor

getter:

Gets the value of "border-left-color"

setter:

Sets the value of "border-left-color"

Implementation
dart
String get borderLeftColor => this._borderLeftColor;

set borderLeftColor(String? value) {
  _borderLeftColor = value == null ? '' : value;
}

borderLeftStyle read / write override ​

String get borderLeftStyle

getter:

Gets the value of "border-left-style"

setter:

Sets the value of "border-left-style"

Implementation
dart
String get borderLeftStyle => this._borderLeftStyle;

set borderLeftStyle(String? value) {
  _borderLeftStyle = value == null ? '' : value;
}

borderLeftWidth read / write override ​

String get borderLeftWidth

getter:

Gets the value of "border-left-width"

setter:

Sets the value of "border-left-width"

Implementation
dart
String get borderLeftWidth => this._borderLeftWidth;

set borderLeftWidth(String? value) {
  _borderLeftWidth = value == null ? '' : value;
}

borderRadius read / write inherited ​

String get borderRadius

getter:

Gets the value of "border-radius"

setter:

Sets the value of "border-radius"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get borderRadius => getPropertyValue('border-radius');

set borderRadius(String value) {
  setProperty('border-radius', value, '');
}

borderRight read / write override ​

String get borderRight

getter:

Gets the value of "border-right"

setter:

Sets the value of "border-right"

Implementation
dart
String get borderRight => this._borderRight;

set borderRight(String? value) {
  _borderRight = value == null ? '' : value;
}

borderRightColor read / write override ​

String get borderRightColor

getter:

Gets the value of "border-right-color"

setter:

Sets the value of "border-right-color"

Implementation
dart
String get borderRightColor => this._borderRightColor;

set borderRightColor(String? value) {
  _borderRightColor = value == null ? '' : value;
}

borderRightStyle read / write override ​

String get borderRightStyle

getter:

Gets the value of "border-right-style"

setter:

Sets the value of "border-right-style"

Implementation
dart
String get borderRightStyle => this._borderRightStyle;

set borderRightStyle(String? value) {
  _borderRightStyle = value == null ? '' : value;
}

borderRightWidth read / write override ​

String get borderRightWidth

getter:

Gets the value of "border-right-width"

setter:

Sets the value of "border-right-width"

Implementation
dart
String get borderRightWidth => this._borderRightWidth;

set borderRightWidth(String? value) {
  _borderRightWidth = value == null ? '' : value;
}

borderSpacing read / write override ​

String get borderSpacing

getter:

Gets the value of "border-spacing"

setter:

Sets the value of "border-spacing"

Implementation
dart
String get borderSpacing => this._borderSpacing;

set borderSpacing(String? value) {
  _borderSpacing = value == null ? '' : value;
}

borderStart read / write inherited ​

String get borderStart

getter:

Gets the value of "border-start"

setter:

Sets the value of "border-start"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get borderStart => getPropertyValue('border-start');

set borderStart(String value) {
  setProperty('border-start', value, '');
}

borderStartColor read / write inherited ​

String get borderStartColor

getter:

Gets the value of "border-start-color"

setter:

Sets the value of "border-start-color"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get borderStartColor => getPropertyValue('border-start-color');

set borderStartColor(String value) {
  setProperty('border-start-color', value, '');
}

borderStartStyle read / write inherited ​

String get borderStartStyle

getter:

Gets the value of "border-start-style"

setter:

Sets the value of "border-start-style"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get borderStartStyle => getPropertyValue('border-start-style');

set borderStartStyle(String value) {
  setProperty('border-start-style', value, '');
}

borderStartWidth read / write inherited ​

String get borderStartWidth

getter:

Gets the value of "border-start-width"

setter:

Sets the value of "border-start-width"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get borderStartWidth => getPropertyValue('border-start-width');

set borderStartWidth(String value) {
  setProperty('border-start-width', value, '');
}

borderStyle read / write override ​

String get borderStyle

getter:

Gets the value of "border-style"

setter:

Sets the value of "border-style"

Implementation
dart
String get borderStyle => this._borderStyle;

set borderStyle(String? value) {
  _borderStyle = value == null ? '' : value;
}

borderTop read / write override ​

String get borderTop

getter:

Gets the value of "border-top"

setter:

Sets the value of "border-top"

Implementation
dart
String get borderTop => this._borderTop;

set borderTop(String? value) {
  _borderTop = value == null ? '' : value;
}

borderTopColor read / write override ​

String get borderTopColor

getter:

Gets the value of "border-top-color"

setter:

Sets the value of "border-top-color"

Implementation
dart
String get borderTopColor => this._borderTopColor;

set borderTopColor(String? value) {
  _borderTopColor = value == null ? '' : value;
}

borderTopLeftRadius read / write inherited ​

String get borderTopLeftRadius

getter:

Gets the value of "border-top-left-radius"

setter:

Sets the value of "border-top-left-radius"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get borderTopLeftRadius => getPropertyValue('border-top-left-radius');

set borderTopLeftRadius(String value) {
  setProperty('border-top-left-radius', value, '');
}

borderTopRightRadius read / write inherited ​

String get borderTopRightRadius

getter:

Gets the value of "border-top-right-radius"

setter:

Sets the value of "border-top-right-radius"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get borderTopRightRadius =>
    getPropertyValue('border-top-right-radius');

set borderTopRightRadius(String value) {
  setProperty('border-top-right-radius', value, '');
}

borderTopStyle read / write override ​

String get borderTopStyle

getter:

Gets the value of "border-top-style"

setter:

Sets the value of "border-top-style"

Implementation
dart
String get borderTopStyle => this._borderTopStyle;

set borderTopStyle(String? value) {
  _borderTopStyle = value == null ? '' : value;
}

borderTopWidth read / write override ​

String get borderTopWidth

getter:

Gets the value of "border-top-width"

setter:

Sets the value of "border-top-width"

Implementation
dart
String get borderTopWidth => this._borderTopWidth;

set borderTopWidth(String? value) {
  _borderTopWidth = value == null ? '' : value;
}

borderVerticalSpacing read / write inherited ​

String get borderVerticalSpacing

getter:

Gets the value of "border-vertical-spacing"

setter:

Sets the value of "border-vertical-spacing"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get borderVerticalSpacing =>
    getPropertyValue('border-vertical-spacing');

set borderVerticalSpacing(String value) {
  setProperty('border-vertical-spacing', value, '');
}

borderWidth read / write override ​

String get borderWidth

getter:

Gets the value of "border-width"

setter:

Sets the value of "border-width"

Implementation
dart
String get borderWidth => this._borderWidth;

set borderWidth(String? value) {
  _borderWidth = value == null ? '' : value;
}

bottom read / write override ​

String get bottom

getter:

Gets the value of "bottom"

setter:

Sets the value of "bottom"

Implementation
dart
String get bottom => this._bottom;

set bottom(String? value) {
  _bottom = value == null ? '' : value;
}

boxAlign read / write inherited ​

String get boxAlign

getter:

Gets the value of "box-align"

setter:

Sets the value of "box-align"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get boxAlign => getPropertyValue('box-align');

set boxAlign(String value) {
  setProperty('box-align', value, '');
}

boxDecorationBreak read / write inherited ​

String get boxDecorationBreak

getter:

Gets the value of "box-decoration-break"

setter:

Sets the value of "box-decoration-break"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get boxDecorationBreak => getPropertyValue('box-decoration-break');

set boxDecorationBreak(String value) {
  setProperty('box-decoration-break', value, '');
}

boxDirection read / write inherited ​

String get boxDirection

getter:

Gets the value of "box-direction"

setter:

Sets the value of "box-direction"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get boxDirection => getPropertyValue('box-direction');

set boxDirection(String value) {
  setProperty('box-direction', value, '');
}

boxFlex read / write inherited ​

String get boxFlex

getter:

Gets the value of "box-flex"

setter:

Sets the value of "box-flex"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get boxFlex => getPropertyValue('box-flex');

set boxFlex(String value) {
  setProperty('box-flex', value, '');
}

boxFlexGroup read / write inherited ​

String get boxFlexGroup

getter:

Gets the value of "box-flex-group"

setter:

Sets the value of "box-flex-group"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get boxFlexGroup => getPropertyValue('box-flex-group');

set boxFlexGroup(String value) {
  setProperty('box-flex-group', value, '');
}

boxLines read / write inherited ​

String get boxLines

getter:

Gets the value of "box-lines"

setter:

Sets the value of "box-lines"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get boxLines => getPropertyValue('box-lines');

set boxLines(String value) {
  setProperty('box-lines', value, '');
}

boxOrdinalGroup read / write inherited ​

String get boxOrdinalGroup

getter:

Gets the value of "box-ordinal-group"

setter:

Sets the value of "box-ordinal-group"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get boxOrdinalGroup => getPropertyValue('box-ordinal-group');

set boxOrdinalGroup(String value) {
  setProperty('box-ordinal-group', value, '');
}

boxOrient read / write inherited ​

String get boxOrient

getter:

Gets the value of "box-orient"

setter:

Sets the value of "box-orient"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get boxOrient => getPropertyValue('box-orient');

set boxOrient(String value) {
  setProperty('box-orient', value, '');
}

boxPack read / write inherited ​

String get boxPack

getter:

Gets the value of "box-pack"

setter:

Sets the value of "box-pack"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get boxPack => getPropertyValue('box-pack');

set boxPack(String value) {
  setProperty('box-pack', value, '');
}

boxReflect read / write inherited ​

String get boxReflect

getter:

Gets the value of "box-reflect"

setter:

Sets the value of "box-reflect"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get boxReflect => getPropertyValue('box-reflect');

set boxReflect(String value) {
  setProperty('box-reflect', value, '');
}

boxShadow read / write inherited ​

String get boxShadow

getter:

Gets the value of "box-shadow"

setter:

Sets the value of "box-shadow"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get boxShadow => getPropertyValue('box-shadow');

set boxShadow(String value) {
  setProperty('box-shadow', value, '');
}

boxSizing read / write inherited ​

String get boxSizing

getter:

Gets the value of "box-sizing"

setter:

Sets the value of "box-sizing"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get boxSizing => getPropertyValue('box-sizing');

set boxSizing(String value) {
  setProperty('box-sizing', value, '');
}

captionSide read / write override ​

String get captionSide

getter:

Gets the value of "caption-side"

setter:

Sets the value of "caption-side"

Implementation
dart
String get captionSide => this._captionSide;

set captionSide(String? value) {
  _captionSide = value == null ? '' : value;
}

clear read / write override ​

String get clear

getter:

Gets the value of "clear"

setter:

Sets the value of "clear"

Implementation
dart
String get clear => this._clear;

set clear(String? value) {
  _clear = value == null ? '' : value;
}

clip read / write override ​

String get clip

getter:

Gets the value of "clip"

setter:

Sets the value of "clip"

Implementation
dart
String get clip => this._clip;

set clip(String? value) {
  _clip = value == null ? '' : value;
}

clipPath read / write inherited ​

String get clipPath

getter:

Gets the value of "clip-path"

setter:

Sets the value of "clip-path"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get clipPath => getPropertyValue('clip-path');

set clipPath(String value) {
  setProperty('clip-path', value, '');
}

color read / write override ​

String get color

getter:

Gets the value of "color"

setter:

Sets the value of "color"

Implementation
dart
String get color => this._color;

set color(String? value) {
  _color = value == null ? '' : value;
}

columnBreakAfter read / write inherited ​

String get columnBreakAfter

getter:

Gets the value of "column-break-after"

setter:

Sets the value of "column-break-after"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get columnBreakAfter => getPropertyValue('column-break-after');

set columnBreakAfter(String value) {
  setProperty('column-break-after', value, '');
}

columnBreakBefore read / write inherited ​

String get columnBreakBefore

getter:

Gets the value of "column-break-before"

setter:

Sets the value of "column-break-before"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get columnBreakBefore => getPropertyValue('column-break-before');

set columnBreakBefore(String value) {
  setProperty('column-break-before', value, '');
}

columnBreakInside read / write inherited ​

String get columnBreakInside

getter:

Gets the value of "column-break-inside"

setter:

Sets the value of "column-break-inside"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get columnBreakInside => getPropertyValue('column-break-inside');

set columnBreakInside(String value) {
  setProperty('column-break-inside', value, '');
}

columnCount read / write inherited ​

String get columnCount

getter:

Gets the value of "column-count"

setter:

Sets the value of "column-count"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get columnCount => getPropertyValue('column-count');

set columnCount(String value) {
  setProperty('column-count', value, '');
}

columnFill read / write inherited ​

String get columnFill

getter:

Gets the value of "column-fill"

setter:

Sets the value of "column-fill"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get columnFill => getPropertyValue('column-fill');

set columnFill(String value) {
  setProperty('column-fill', value, '');
}

columnGap read / write inherited ​

String get columnGap

getter:

Gets the value of "column-gap"

setter:

Sets the value of "column-gap"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get columnGap => getPropertyValue('column-gap');

set columnGap(String value) {
  setProperty('column-gap', value, '');
}

columnRule read / write inherited ​

String get columnRule

getter:

Gets the value of "column-rule"

setter:

Sets the value of "column-rule"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get columnRule => getPropertyValue('column-rule');

set columnRule(String value) {
  setProperty('column-rule', value, '');
}

columnRuleColor read / write inherited ​

String get columnRuleColor

getter:

Gets the value of "column-rule-color"

setter:

Sets the value of "column-rule-color"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get columnRuleColor => getPropertyValue('column-rule-color');

set columnRuleColor(String value) {
  setProperty('column-rule-color', value, '');
}

columnRuleStyle read / write inherited ​

String get columnRuleStyle

getter:

Gets the value of "column-rule-style"

setter:

Sets the value of "column-rule-style"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get columnRuleStyle => getPropertyValue('column-rule-style');

set columnRuleStyle(String value) {
  setProperty('column-rule-style', value, '');
}

columnRuleWidth read / write inherited ​

String get columnRuleWidth

getter:

Gets the value of "column-rule-width"

setter:

Sets the value of "column-rule-width"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get columnRuleWidth => getPropertyValue('column-rule-width');

set columnRuleWidth(String value) {
  setProperty('column-rule-width', value, '');
}

columns read / write inherited ​

String get columns

getter:

Gets the value of "columns"

setter:

Sets the value of "columns"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get columns => getPropertyValue('columns');

set columns(String value) {
  setProperty('columns', value, '');
}

columnSpan read / write inherited ​

String get columnSpan

getter:

Gets the value of "column-span"

setter:

Sets the value of "column-span"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get columnSpan => getPropertyValue('column-span');

set columnSpan(String value) {
  setProperty('column-span', value, '');
}

columnWidth read / write inherited ​

String get columnWidth

getter:

Gets the value of "column-width"

setter:

Sets the value of "column-width"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get columnWidth => getPropertyValue('column-width');

set columnWidth(String value) {
  setProperty('column-width', value, '');
}

content read / write override ​

String get content

getter:

Gets the value of "content"

setter:

Sets the value of "content"

Implementation
dart
String get content => this._content;

set content(String? value) {
  _content = value == null ? '' : value;
}

counterIncrement read / write inherited ​

String get counterIncrement

getter:

Gets the value of "counter-increment"

setter:

Sets the value of "counter-increment"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get counterIncrement => getPropertyValue('counter-increment');

set counterIncrement(String value) {
  setProperty('counter-increment', value, '');
}

counterReset read / write inherited ​

String get counterReset

getter:

Gets the value of "counter-reset"

setter:

Sets the value of "counter-reset"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get counterReset => getPropertyValue('counter-reset');

set counterReset(String value) {
  setProperty('counter-reset', value, '');
}

cssFloat read / write ​

String? get cssFloat
Implementation
dart
String? get cssFloat native;

set cssFloat(String? value) native;

cssText read / write ​

String? get cssText
Implementation
dart
String? get cssText native;

set cssText(String? value) native;

cursor read / write override ​

String get cursor

getter:

Gets the value of "cursor"

setter:

Sets the value of "cursor"

Implementation
dart
String get cursor => this._cursor;

set cursor(String? value) {
  _cursor = value == null ? '' : value;
}

direction read / write override ​

String get direction

getter:

Gets the value of "direction"

setter:

Sets the value of "direction"

Implementation
dart
String get direction => this._direction;

set direction(String? value) {
  _direction = value == null ? '' : value;
}

display read / write override ​

String get display

getter:

Gets the value of "display"

setter:

Sets the value of "display"

Implementation
dart
String get display => this._display;

set display(String? value) {
  _display = value == null ? '' : value;
}

emptyCells read / write override ​

String get emptyCells

getter:

Gets the value of "empty-cells"

setter:

Sets the value of "empty-cells"

Implementation
dart
String get emptyCells => this._emptyCells;

set emptyCells(String? value) {
  _emptyCells = value == null ? '' : value;
}

filter read / write inherited ​

String get filter

getter:

Gets the value of "filter"

setter:

Sets the value of "filter"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get filter => getPropertyValue('filter');

set filter(String value) {
  setProperty('filter', value, '');
}

flex read / write inherited ​

String get flex

getter:

Gets the value of "flex"

setter:

Sets the value of "flex"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get flex => getPropertyValue('flex');

set flex(String value) {
  setProperty('flex', value, '');
}

flexBasis read / write inherited ​

String get flexBasis

getter:

Gets the value of "flex-basis"

setter:

Sets the value of "flex-basis"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get flexBasis => getPropertyValue('flex-basis');

set flexBasis(String value) {
  setProperty('flex-basis', value, '');
}

flexDirection read / write inherited ​

String get flexDirection

getter:

Gets the value of "flex-direction"

setter:

Sets the value of "flex-direction"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get flexDirection => getPropertyValue('flex-direction');

set flexDirection(String value) {
  setProperty('flex-direction', value, '');
}

flexFlow read / write inherited ​

String get flexFlow

getter:

Gets the value of "flex-flow"

setter:

Sets the value of "flex-flow"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get flexFlow => getPropertyValue('flex-flow');

set flexFlow(String value) {
  setProperty('flex-flow', value, '');
}

flexGrow read / write inherited ​

String get flexGrow

getter:

Gets the value of "flex-grow"

setter:

Sets the value of "flex-grow"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get flexGrow => getPropertyValue('flex-grow');

set flexGrow(String value) {
  setProperty('flex-grow', value, '');
}

flexShrink read / write inherited ​

String get flexShrink

getter:

Gets the value of "flex-shrink"

setter:

Sets the value of "flex-shrink"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get flexShrink => getPropertyValue('flex-shrink');

set flexShrink(String value) {
  setProperty('flex-shrink', value, '');
}

flexWrap read / write inherited ​

String get flexWrap

getter:

Gets the value of "flex-wrap"

setter:

Sets the value of "flex-wrap"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get flexWrap => getPropertyValue('flex-wrap');

set flexWrap(String value) {
  setProperty('flex-wrap', value, '');
}

float read / write inherited ​

String get float

getter:

Gets the value of "float"

setter:

Sets the value of "float"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get float => getPropertyValue('float');

set float(String value) {
  setProperty('float', value, '');
}

font read / write override ​

String get font

getter:

Gets the value of "font"

setter:

Sets the value of "font"

Implementation
dart
String get font => this._font;

set font(String? value) {
  _font = value == null ? '' : value;
}

fontFamily read / write override ​

String get fontFamily

getter:

Gets the value of "font-family"

setter:

Sets the value of "font-family"

Implementation
dart
String get fontFamily => this._fontFamily;

set fontFamily(String? value) {
  _fontFamily = value == null ? '' : value;
}

fontFeatureSettings read / write inherited ​

String get fontFeatureSettings

getter:

Gets the value of "font-feature-settings"

setter:

Sets the value of "font-feature-settings"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get fontFeatureSettings => getPropertyValue('font-feature-settings');

set fontFeatureSettings(String value) {
  setProperty('font-feature-settings', value, '');
}

fontKerning read / write inherited ​

String get fontKerning

getter:

Gets the value of "font-kerning"

setter:

Sets the value of "font-kerning"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get fontKerning => getPropertyValue('font-kerning');

set fontKerning(String value) {
  setProperty('font-kerning', value, '');
}

fontSize read / write override ​

String get fontSize

getter:

Gets the value of "font-size"

setter:

Sets the value of "font-size"

Implementation
dart
String get fontSize => this._fontSize;

set fontSize(String? value) {
  _fontSize = value == null ? '' : value;
}

fontSizeDelta read / write inherited ​

String get fontSizeDelta

getter:

Gets the value of "font-size-delta"

setter:

Sets the value of "font-size-delta"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get fontSizeDelta => getPropertyValue('font-size-delta');

set fontSizeDelta(String value) {
  setProperty('font-size-delta', value, '');
}

fontSmoothing read / write inherited ​

String get fontSmoothing

getter:

Gets the value of "font-smoothing"

setter:

Sets the value of "font-smoothing"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get fontSmoothing => getPropertyValue('font-smoothing');

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

fontStretch read / write inherited ​

String get fontStretch

getter:

Gets the value of "font-stretch"

setter:

Sets the value of "font-stretch"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get fontStretch => getPropertyValue('font-stretch');

set fontStretch(String value) {
  setProperty('font-stretch', value, '');
}

fontStyle read / write override ​

String get fontStyle

getter:

Gets the value of "font-style"

setter:

Sets the value of "font-style"

Implementation
dart
String get fontStyle => this._fontStyle;

set fontStyle(String? value) {
  _fontStyle = value == null ? '' : value;
}

fontVariant read / write override ​

String get fontVariant

getter:

Gets the value of "font-variant"

setter:

Sets the value of "font-variant"

Implementation
dart
String get fontVariant => this._fontVariant;

set fontVariant(String? value) {
  _fontVariant = value == null ? '' : value;
}

fontVariantLigatures read / write inherited ​

String get fontVariantLigatures

getter:

Gets the value of "font-variant-ligatures"

setter:

Sets the value of "font-variant-ligatures"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get fontVariantLigatures => getPropertyValue('font-variant-ligatures');

set fontVariantLigatures(String value) {
  setProperty('font-variant-ligatures', value, '');
}

fontWeight read / write override ​

String get fontWeight

getter:

Gets the value of "font-weight"

setter:

Sets the value of "font-weight"

Implementation
dart
String get fontWeight => this._fontWeight;

set fontWeight(String? value) {
  _fontWeight = value == null ? '' : value;
}

gap read / write inherited ​

String get gap

getter:

Gets the value of "gap"

setter:

Sets the value of "gap"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get gap => getPropertyValue('gap');

set gap(String value) {
  setProperty('gap', value, '');
}

grid read / write inherited ​

String get grid

getter:

Gets the value of "grid"

setter:

Sets the value of "grid"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get grid => getPropertyValue('grid');

set grid(String value) {
  setProperty('grid', value, '');
}

gridArea read / write inherited ​

String get gridArea

getter:

Gets the value of "grid-area"

setter:

Sets the value of "grid-area"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get gridArea => getPropertyValue('grid-area');

set gridArea(String value) {
  setProperty('grid-area', value, '');
}

gridAutoColumns read / write inherited ​

String get gridAutoColumns

getter:

Gets the value of "grid-auto-columns"

setter:

Sets the value of "grid-auto-columns"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get gridAutoColumns => getPropertyValue('grid-auto-columns');

set gridAutoColumns(String value) {
  setProperty('grid-auto-columns', value, '');
}

gridAutoFlow read / write inherited ​

String get gridAutoFlow

getter:

Gets the value of "grid-auto-flow"

setter:

Sets the value of "grid-auto-flow"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get gridAutoFlow => getPropertyValue('grid-auto-flow');

set gridAutoFlow(String value) {
  setProperty('grid-auto-flow', value, '');
}

gridAutoRows read / write inherited ​

String get gridAutoRows

getter:

Gets the value of "grid-auto-rows"

setter:

Sets the value of "grid-auto-rows"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get gridAutoRows => getPropertyValue('grid-auto-rows');

set gridAutoRows(String value) {
  setProperty('grid-auto-rows', value, '');
}

gridColumn read / write inherited ​

String get gridColumn

getter:

Gets the value of "grid-column"

setter:

Sets the value of "grid-column"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get gridColumn => getPropertyValue('grid-column');

set gridColumn(String value) {
  setProperty('grid-column', value, '');
}

gridColumnEnd read / write inherited ​

String get gridColumnEnd

getter:

Gets the value of "grid-column-end"

setter:

Sets the value of "grid-column-end"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get gridColumnEnd => getPropertyValue('grid-column-end');

set gridColumnEnd(String value) {
  setProperty('grid-column-end', value, '');
}

gridColumnStart read / write inherited ​

String get gridColumnStart

getter:

Gets the value of "grid-column-start"

setter:

Sets the value of "grid-column-start"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get gridColumnStart => getPropertyValue('grid-column-start');

set gridColumnStart(String value) {
  setProperty('grid-column-start', value, '');
}

gridRow read / write inherited ​

String get gridRow

getter:

Gets the value of "grid-row"

setter:

Sets the value of "grid-row"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get gridRow => getPropertyValue('grid-row');

set gridRow(String value) {
  setProperty('grid-row', value, '');
}

gridRowEnd read / write inherited ​

String get gridRowEnd

getter:

Gets the value of "grid-row-end"

setter:

Sets the value of "grid-row-end"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get gridRowEnd => getPropertyValue('grid-row-end');

set gridRowEnd(String value) {
  setProperty('grid-row-end', value, '');
}

gridRowStart read / write inherited ​

String get gridRowStart

getter:

Gets the value of "grid-row-start"

setter:

Sets the value of "grid-row-start"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get gridRowStart => getPropertyValue('grid-row-start');

set gridRowStart(String value) {
  setProperty('grid-row-start', value, '');
}

gridTemplate read / write inherited ​

String get gridTemplate

getter:

Gets the value of "grid-template"

setter:

Sets the value of "grid-template"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get gridTemplate => getPropertyValue('grid-template');

set gridTemplate(String value) {
  setProperty('grid-template', value, '');
}

gridTemplateAreas read / write inherited ​

String get gridTemplateAreas

getter:

Gets the value of "grid-template-areas"

setter:

Sets the value of "grid-template-areas"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get gridTemplateAreas => getPropertyValue('grid-template-areas');

set gridTemplateAreas(String value) {
  setProperty('grid-template-areas', value, '');
}

gridTemplateColumns read / write inherited ​

String get gridTemplateColumns

getter:

Gets the value of "grid-template-columns"

setter:

Sets the value of "grid-template-columns"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get gridTemplateColumns => getPropertyValue('grid-template-columns');

set gridTemplateColumns(String value) {
  setProperty('grid-template-columns', value, '');
}

gridTemplateRows read / write inherited ​

String get gridTemplateRows

getter:

Gets the value of "grid-template-rows"

setter:

Sets the value of "grid-template-rows"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get gridTemplateRows => getPropertyValue('grid-template-rows');

set gridTemplateRows(String value) {
  setProperty('grid-template-rows', value, '');
}

hashCode no setter inherited ​

int get hashCode

Inherited from Interceptor.

Implementation
dart
int get hashCode => Primitives.objectHashCode(this);

height read / write override ​

String get height

getter:

Gets the value of "height"

setter:

Sets the value of "height"

Implementation
dart
String get height => this._height;

set height(String? value) {
  _height = value == null ? '' : value;
}

highlight read / write inherited ​

String get highlight

getter:

Gets the value of "highlight"

setter:

Sets the value of "highlight"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get highlight => getPropertyValue('highlight');

set highlight(String value) {
  setProperty('highlight', value, '');
}

hyphenateCharacter read / write inherited ​

String get hyphenateCharacter

getter:

Gets the value of "hyphenate-character"

setter:

Sets the value of "hyphenate-character"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get hyphenateCharacter => getPropertyValue('hyphenate-character');

set hyphenateCharacter(String value) {
  setProperty('hyphenate-character', value, '');
}

imageRendering read / write inherited ​

String get imageRendering

getter:

Gets the value of "image-rendering"

setter:

Sets the value of "image-rendering"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get imageRendering => getPropertyValue('image-rendering');

set imageRendering(String value) {
  setProperty('image-rendering', value, '');
}

isolation read / write inherited ​

String get isolation

getter:

Gets the value of "isolation"

setter:

Sets the value of "isolation"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get isolation => getPropertyValue('isolation');

set isolation(String value) {
  setProperty('isolation', value, '');
}

justifyContent read / write inherited ​

String get justifyContent

getter:

Gets the value of "justify-content"

setter:

Sets the value of "justify-content"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get justifyContent => getPropertyValue('justify-content');

set justifyContent(String value) {
  setProperty('justify-content', value, '');
}

justifySelf read / write inherited ​

String get justifySelf

getter:

Gets the value of "justify-self"

setter:

Sets the value of "justify-self"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get justifySelf => getPropertyValue('justify-self');

set justifySelf(String value) {
  setProperty('justify-self', value, '');
}

left read / write override ​

String get left

getter:

Gets the value of "left"

setter:

Sets the value of "left"

Implementation
dart
String get left => this._left;

set left(String? value) {
  _left = value == null ? '' : value;
}

length no setter ​

int get length
Implementation
dart
int get length native;

letterSpacing read / write override ​

String get letterSpacing

getter:

Gets the value of "letter-spacing"

setter:

Sets the value of "letter-spacing"

Implementation
dart
String get letterSpacing => this._letterSpacing;

set letterSpacing(String? value) {
  _letterSpacing = value == null ? '' : value;
}

lineBoxContain read / write inherited ​

String get lineBoxContain

getter:

Gets the value of "line-box-contain"

setter:

Sets the value of "line-box-contain"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get lineBoxContain => getPropertyValue('line-box-contain');

set lineBoxContain(String value) {
  setProperty('line-box-contain', value, '');
}

lineBreak read / write inherited ​

String get lineBreak

getter:

Gets the value of "line-break"

setter:

Sets the value of "line-break"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get lineBreak => getPropertyValue('line-break');

set lineBreak(String value) {
  setProperty('line-break', value, '');
}

lineClamp read / write inherited ​

String get lineClamp

getter:

Gets the value of "line-clamp"

setter:

Sets the value of "line-clamp"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get lineClamp => getPropertyValue('line-clamp');

set lineClamp(String value) {
  setProperty('line-clamp', value, '');
}

lineHeight read / write override ​

String get lineHeight

getter:

Gets the value of "line-height"

setter:

Sets the value of "line-height"

Implementation
dart
String get lineHeight => this._lineHeight;

set lineHeight(String? value) {
  _lineHeight = value == null ? '' : value;
}

listStyle read / write override ​

String get listStyle

getter:

Gets the value of "list-style"

setter:

Sets the value of "list-style"

Implementation
dart
String get listStyle => this._listStyle;

set listStyle(String? value) {
  _listStyle = value == null ? '' : value;
}

listStyleImage read / write override ​

String get listStyleImage

getter:

Gets the value of "list-style-image"

setter:

Sets the value of "list-style-image"

Implementation
dart
String get listStyleImage => this._listStyleImage;

set listStyleImage(String? value) {
  _listStyleImage = value == null ? '' : value;
}

listStylePosition read / write override ​

String get listStylePosition

getter:

Gets the value of "list-style-position"

setter:

Sets the value of "list-style-position"

Implementation
dart
String get listStylePosition => this._listStylePosition;

set listStylePosition(String? value) {
  _listStylePosition = value == null ? '' : value;
}

listStyleType read / write override ​

String get listStyleType

getter:

Gets the value of "list-style-type"

setter:

Sets the value of "list-style-type"

Implementation
dart
String get listStyleType => this._listStyleType;

set listStyleType(String? value) {
  _listStyleType = value == null ? '' : value;
}

locale read / write inherited ​

String get locale

getter:

Gets the value of "locale"

setter:

Sets the value of "locale"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get locale => getPropertyValue('locale');

set locale(String value) {
  setProperty('locale', value, '');
}

logicalHeight read / write inherited ​

String get logicalHeight

getter:

Gets the value of "logical-height"

setter:

Sets the value of "logical-height"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get logicalHeight => getPropertyValue('logical-height');

set logicalHeight(String value) {
  setProperty('logical-height', value, '');
}

logicalWidth read / write inherited ​

String get logicalWidth

getter:

Gets the value of "logical-width"

setter:

Sets the value of "logical-width"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get logicalWidth => getPropertyValue('logical-width');

set logicalWidth(String value) {
  setProperty('logical-width', value, '');
}

margin read / write override ​

String get margin

getter:

Gets the value of "margin"

setter:

Sets the value of "margin"

Implementation
dart
String get margin => this._margin;

set margin(String? value) {
  _margin = value == null ? '' : value;
}

marginAfter read / write inherited ​

String get marginAfter

getter:

Gets the value of "margin-after"

setter:

Sets the value of "margin-after"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get marginAfter => getPropertyValue('margin-after');

set marginAfter(String value) {
  setProperty('margin-after', value, '');
}

marginAfterCollapse read / write inherited ​

String get marginAfterCollapse

getter:

Gets the value of "margin-after-collapse"

setter:

Sets the value of "margin-after-collapse"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get marginAfterCollapse => getPropertyValue('margin-after-collapse');

set marginAfterCollapse(String value) {
  setProperty('margin-after-collapse', value, '');
}

marginBefore read / write inherited ​

String get marginBefore

getter:

Gets the value of "margin-before"

setter:

Sets the value of "margin-before"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get marginBefore => getPropertyValue('margin-before');

set marginBefore(String value) {
  setProperty('margin-before', value, '');
}

marginBeforeCollapse read / write inherited ​

String get marginBeforeCollapse

getter:

Gets the value of "margin-before-collapse"

setter:

Sets the value of "margin-before-collapse"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get marginBeforeCollapse => getPropertyValue('margin-before-collapse');

set marginBeforeCollapse(String value) {
  setProperty('margin-before-collapse', value, '');
}

marginBottom read / write override ​

String get marginBottom

getter:

Gets the value of "margin-bottom"

setter:

Sets the value of "margin-bottom"

Implementation
dart
String get marginBottom => this._marginBottom;

set marginBottom(String? value) {
  _marginBottom = value == null ? '' : value;
}

marginBottomCollapse read / write inherited ​

String get marginBottomCollapse

getter:

Gets the value of "margin-bottom-collapse"

setter:

Sets the value of "margin-bottom-collapse"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get marginBottomCollapse => getPropertyValue('margin-bottom-collapse');

set marginBottomCollapse(String value) {
  setProperty('margin-bottom-collapse', value, '');
}

marginCollapse read / write inherited ​

String get marginCollapse

getter:

Gets the value of "margin-collapse"

setter:

Sets the value of "margin-collapse"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get marginCollapse => getPropertyValue('margin-collapse');

set marginCollapse(String value) {
  setProperty('margin-collapse', value, '');
}

marginEnd read / write inherited ​

String get marginEnd

getter:

Gets the value of "margin-end"

setter:

Sets the value of "margin-end"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get marginEnd => getPropertyValue('margin-end');

set marginEnd(String value) {
  setProperty('margin-end', value, '');
}

marginLeft read / write override ​

String get marginLeft

getter:

Gets the value of "margin-left"

setter:

Sets the value of "margin-left"

Implementation
dart
String get marginLeft => this._marginLeft;

set marginLeft(String? value) {
  _marginLeft = value == null ? '' : value;
}

marginRight read / write override ​

String get marginRight

getter:

Gets the value of "margin-right"

setter:

Sets the value of "margin-right"

Implementation
dart
String get marginRight => this._marginRight;

set marginRight(String? value) {
  _marginRight = value == null ? '' : value;
}

marginStart read / write inherited ​

String get marginStart

getter:

Gets the value of "margin-start"

setter:

Sets the value of "margin-start"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get marginStart => getPropertyValue('margin-start');

set marginStart(String value) {
  setProperty('margin-start', value, '');
}

marginTop read / write override ​

String get marginTop

getter:

Gets the value of "margin-top"

setter:

Sets the value of "margin-top"

Implementation
dart
String get marginTop => this._marginTop;

set marginTop(String? value) {
  _marginTop = value == null ? '' : value;
}

marginTopCollapse read / write inherited ​

String get marginTopCollapse

getter:

Gets the value of "margin-top-collapse"

setter:

Sets the value of "margin-top-collapse"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get marginTopCollapse => getPropertyValue('margin-top-collapse');

set marginTopCollapse(String value) {
  setProperty('margin-top-collapse', value, '');
}

mask read / write inherited ​

String get mask

getter:

Gets the value of "mask"

setter:

Sets the value of "mask"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get mask => getPropertyValue('mask');

set mask(String value) {
  setProperty('mask', value, '');
}

maskBoxImage read / write inherited ​

String get maskBoxImage

getter:

Gets the value of "mask-box-image"

setter:

Sets the value of "mask-box-image"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get maskBoxImage => getPropertyValue('mask-box-image');

set maskBoxImage(String value) {
  setProperty('mask-box-image', value, '');
}

maskBoxImageOutset read / write inherited ​

String get maskBoxImageOutset

getter:

Gets the value of "mask-box-image-outset"

setter:

Sets the value of "mask-box-image-outset"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get maskBoxImageOutset => getPropertyValue('mask-box-image-outset');

set maskBoxImageOutset(String value) {
  setProperty('mask-box-image-outset', value, '');
}

maskBoxImageRepeat read / write inherited ​

String get maskBoxImageRepeat

getter:

Gets the value of "mask-box-image-repeat"

setter:

Sets the value of "mask-box-image-repeat"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get maskBoxImageRepeat => getPropertyValue('mask-box-image-repeat');

set maskBoxImageRepeat(String value) {
  setProperty('mask-box-image-repeat', value, '');
}

maskBoxImageSlice read / write inherited ​

String get maskBoxImageSlice

getter:

Gets the value of "mask-box-image-slice"

setter:

Sets the value of "mask-box-image-slice"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get maskBoxImageSlice => getPropertyValue('mask-box-image-slice');

set maskBoxImageSlice(String value) {
  setProperty('mask-box-image-slice', value, '');
}

maskBoxImageSource read / write inherited ​

String get maskBoxImageSource

getter:

Gets the value of "mask-box-image-source"

setter:

Sets the value of "mask-box-image-source"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get maskBoxImageSource => getPropertyValue('mask-box-image-source');

set maskBoxImageSource(String value) {
  setProperty('mask-box-image-source', value, '');
}

maskBoxImageWidth read / write inherited ​

String get maskBoxImageWidth

getter:

Gets the value of "mask-box-image-width"

setter:

Sets the value of "mask-box-image-width"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get maskBoxImageWidth => getPropertyValue('mask-box-image-width');

set maskBoxImageWidth(String value) {
  setProperty('mask-box-image-width', value, '');
}

maskClip read / write inherited ​

String get maskClip

getter:

Gets the value of "mask-clip"

setter:

Sets the value of "mask-clip"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get maskClip => getPropertyValue('mask-clip');

set maskClip(String value) {
  setProperty('mask-clip', value, '');
}

maskComposite read / write inherited ​

String get maskComposite

getter:

Gets the value of "mask-composite"

setter:

Sets the value of "mask-composite"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get maskComposite => getPropertyValue('mask-composite');

set maskComposite(String value) {
  setProperty('mask-composite', value, '');
}

maskImage read / write inherited ​

String get maskImage

getter:

Gets the value of "mask-image"

setter:

Sets the value of "mask-image"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get maskImage => getPropertyValue('mask-image');

set maskImage(String value) {
  setProperty('mask-image', value, '');
}

maskOrigin read / write inherited ​

String get maskOrigin

getter:

Gets the value of "mask-origin"

setter:

Sets the value of "mask-origin"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get maskOrigin => getPropertyValue('mask-origin');

set maskOrigin(String value) {
  setProperty('mask-origin', value, '');
}

maskPosition read / write inherited ​

String get maskPosition

getter:

Gets the value of "mask-position"

setter:

Sets the value of "mask-position"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get maskPosition => getPropertyValue('mask-position');

set maskPosition(String value) {
  setProperty('mask-position', value, '');
}

maskPositionX read / write inherited ​

String get maskPositionX

getter:

Gets the value of "mask-position-x"

setter:

Sets the value of "mask-position-x"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get maskPositionX => getPropertyValue('mask-position-x');

set maskPositionX(String value) {
  setProperty('mask-position-x', value, '');
}

maskPositionY read / write inherited ​

String get maskPositionY

getter:

Gets the value of "mask-position-y"

setter:

Sets the value of "mask-position-y"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get maskPositionY => getPropertyValue('mask-position-y');

set maskPositionY(String value) {
  setProperty('mask-position-y', value, '');
}

maskRepeat read / write inherited ​

String get maskRepeat

getter:

Gets the value of "mask-repeat"

setter:

Sets the value of "mask-repeat"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get maskRepeat => getPropertyValue('mask-repeat');

set maskRepeat(String value) {
  setProperty('mask-repeat', value, '');
}

maskRepeatX read / write inherited ​

String get maskRepeatX

getter:

Gets the value of "mask-repeat-x"

setter:

Sets the value of "mask-repeat-x"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get maskRepeatX => getPropertyValue('mask-repeat-x');

set maskRepeatX(String value) {
  setProperty('mask-repeat-x', value, '');
}

maskRepeatY read / write inherited ​

String get maskRepeatY

getter:

Gets the value of "mask-repeat-y"

setter:

Sets the value of "mask-repeat-y"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get maskRepeatY => getPropertyValue('mask-repeat-y');

set maskRepeatY(String value) {
  setProperty('mask-repeat-y', value, '');
}

maskSize read / write inherited ​

String get maskSize

getter:

Gets the value of "mask-size"

setter:

Sets the value of "mask-size"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get maskSize => getPropertyValue('mask-size');

set maskSize(String value) {
  setProperty('mask-size', value, '');
}

maskSourceType read / write inherited ​

String get maskSourceType

getter:

Gets the value of "mask-source-type"

setter:

Sets the value of "mask-source-type"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get maskSourceType => getPropertyValue('mask-source-type');

set maskSourceType(String value) {
  setProperty('mask-source-type', value, '');
}

maxHeight read / write override ​

String get maxHeight

getter:

Gets the value of "max-height"

setter:

Sets the value of "max-height"

Implementation
dart
String get maxHeight => this._maxHeight;

set maxHeight(String? value) {
  _maxHeight = value == null ? '' : value;
}

maxLogicalHeight read / write inherited ​

String get maxLogicalHeight

getter:

Gets the value of "max-logical-height"

setter:

Sets the value of "max-logical-height"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get maxLogicalHeight => getPropertyValue('max-logical-height');

set maxLogicalHeight(String value) {
  setProperty('max-logical-height', value, '');
}

maxLogicalWidth read / write inherited ​

String get maxLogicalWidth

getter:

Gets the value of "max-logical-width"

setter:

Sets the value of "max-logical-width"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get maxLogicalWidth => getPropertyValue('max-logical-width');

set maxLogicalWidth(String value) {
  setProperty('max-logical-width', value, '');
}

maxWidth read / write override ​

String get maxWidth

getter:

Gets the value of "max-width"

setter:

Sets the value of "max-width"

Implementation
dart
String get maxWidth => this._maxWidth;

set maxWidth(String? value) {
  _maxWidth = value == null ? '' : value;
}

maxZoom read / write inherited ​

String get maxZoom

getter:

Gets the value of "max-zoom"

setter:

Sets the value of "max-zoom"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get maxZoom => getPropertyValue('max-zoom');

set maxZoom(String value) {
  setProperty('max-zoom', value, '');
}

minHeight read / write override ​

String get minHeight

getter:

Gets the value of "min-height"

setter:

Sets the value of "min-height"

Implementation
dart
String get minHeight => this._minHeight;

set minHeight(String? value) {
  _minHeight = value == null ? '' : value;
}

minLogicalHeight read / write inherited ​

String get minLogicalHeight

getter:

Gets the value of "min-logical-height"

setter:

Sets the value of "min-logical-height"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get minLogicalHeight => getPropertyValue('min-logical-height');

set minLogicalHeight(String value) {
  setProperty('min-logical-height', value, '');
}

minLogicalWidth read / write inherited ​

String get minLogicalWidth

getter:

Gets the value of "min-logical-width"

setter:

Sets the value of "min-logical-width"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get minLogicalWidth => getPropertyValue('min-logical-width');

set minLogicalWidth(String value) {
  setProperty('min-logical-width', value, '');
}

minWidth read / write override ​

String get minWidth

getter:

Gets the value of "min-width"

setter:

Sets the value of "min-width"

Implementation
dart
String get minWidth => this._minWidth;

set minWidth(String? value) {
  _minWidth = value == null ? '' : value;
}

minZoom read / write inherited ​

String get minZoom

getter:

Gets the value of "min-zoom"

setter:

Sets the value of "min-zoom"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get minZoom => getPropertyValue('min-zoom');

set minZoom(String value) {
  setProperty('min-zoom', value, '');
}

mixBlendMode read / write inherited ​

String get mixBlendMode

getter:

Gets the value of "mix-blend-mode"

setter:

Sets the value of "mix-blend-mode"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get mixBlendMode => getPropertyValue('mix-blend-mode');

set mixBlendMode(String value) {
  setProperty('mix-blend-mode', value, '');
}

objectFit read / write inherited ​

String get objectFit

getter:

Gets the value of "object-fit"

setter:

Sets the value of "object-fit"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get objectFit => getPropertyValue('object-fit');

set objectFit(String value) {
  setProperty('object-fit', value, '');
}

objectPosition read / write inherited ​

String get objectPosition

getter:

Gets the value of "object-position"

setter:

Sets the value of "object-position"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get objectPosition => getPropertyValue('object-position');

set objectPosition(String value) {
  setProperty('object-position', value, '');
}

opacity read / write inherited ​

String get opacity

getter:

Gets the value of "opacity"

setter:

Sets the value of "opacity"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get opacity => getPropertyValue('opacity');

set opacity(String value) {
  setProperty('opacity', value, '');
}

order read / write inherited ​

String get order

getter:

Gets the value of "order"

setter:

Sets the value of "order"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get order => getPropertyValue('order');

set order(String value) {
  setProperty('order', value, '');
}

orientation read / write inherited ​

String get orientation

getter:

Gets the value of "orientation"

setter:

Sets the value of "orientation"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get orientation => getPropertyValue('orientation');

set orientation(String value) {
  setProperty('orientation', value, '');
}

orphans read / write inherited ​

String get orphans

getter:

Gets the value of "orphans"

setter:

Sets the value of "orphans"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get orphans => getPropertyValue('orphans');

set orphans(String value) {
  setProperty('orphans', value, '');
}

outline read / write override ​

String get outline

getter:

Gets the value of "outline"

setter:

Sets the value of "outline"

Implementation
dart
String get outline => this._outline;

set outline(String? value) {
  _outline = value == null ? '' : value;
}

outlineColor read / write override ​

String get outlineColor

getter:

Gets the value of "outline-color"

setter:

Sets the value of "outline-color"

Implementation
dart
String get outlineColor => this._outlineColor;

set outlineColor(String? value) {
  _outlineColor = value == null ? '' : value;
}

outlineOffset read / write inherited ​

String get outlineOffset

getter:

Gets the value of "outline-offset"

setter:

Sets the value of "outline-offset"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get outlineOffset => getPropertyValue('outline-offset');

set outlineOffset(String value) {
  setProperty('outline-offset', value, '');
}

outlineStyle read / write override ​

String get outlineStyle

getter:

Gets the value of "outline-style"

setter:

Sets the value of "outline-style"

Implementation
dart
String get outlineStyle => this._outlineStyle;

set outlineStyle(String? value) {
  _outlineStyle = value == null ? '' : value;
}

outlineWidth read / write override ​

String get outlineWidth

getter:

Gets the value of "outline-width"

setter:

Sets the value of "outline-width"

Implementation
dart
String get outlineWidth => this._outlineWidth;

set outlineWidth(String? value) {
  _outlineWidth = value == null ? '' : value;
}

overflow read / write override ​

String get overflow

getter:

Gets the value of "overflow"

setter:

Sets the value of "overflow"

Implementation
dart
String get overflow => this._overflow;

set overflow(String? value) {
  _overflow = value == null ? '' : value;
}

overflowWrap read / write inherited ​

String get overflowWrap

getter:

Gets the value of "overflow-wrap"

setter:

Sets the value of "overflow-wrap"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get overflowWrap => getPropertyValue('overflow-wrap');

set overflowWrap(String value) {
  setProperty('overflow-wrap', value, '');
}

overflowX read / write inherited ​

String get overflowX

getter:

Gets the value of "overflow-x"

setter:

Sets the value of "overflow-x"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get overflowX => getPropertyValue('overflow-x');

set overflowX(String value) {
  setProperty('overflow-x', value, '');
}

overflowY read / write inherited ​

String get overflowY

getter:

Gets the value of "overflow-y"

setter:

Sets the value of "overflow-y"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get overflowY => getPropertyValue('overflow-y');

set overflowY(String value) {
  setProperty('overflow-y', value, '');
}

padding read / write override ​

String get padding

getter:

Gets the value of "padding"

setter:

Sets the value of "padding"

Implementation
dart
String get padding => this._padding;

set padding(String? value) {
  _padding = value == null ? '' : value;
}

paddingAfter read / write inherited ​

String get paddingAfter

getter:

Gets the value of "padding-after"

setter:

Sets the value of "padding-after"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get paddingAfter => getPropertyValue('padding-after');

set paddingAfter(String value) {
  setProperty('padding-after', value, '');
}

paddingBefore read / write inherited ​

String get paddingBefore

getter:

Gets the value of "padding-before"

setter:

Sets the value of "padding-before"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get paddingBefore => getPropertyValue('padding-before');

set paddingBefore(String value) {
  setProperty('padding-before', value, '');
}

paddingBottom read / write override ​

String get paddingBottom

getter:

Gets the value of "padding-bottom"

setter:

Sets the value of "padding-bottom"

Implementation
dart
String get paddingBottom => this._paddingBottom;

set paddingBottom(String? value) {
  _paddingBottom = value == null ? '' : value;
}

paddingEnd read / write inherited ​

String get paddingEnd

getter:

Gets the value of "padding-end"

setter:

Sets the value of "padding-end"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get paddingEnd => getPropertyValue('padding-end');

set paddingEnd(String value) {
  setProperty('padding-end', value, '');
}

paddingLeft read / write override ​

String get paddingLeft

getter:

Gets the value of "padding-left"

setter:

Sets the value of "padding-left"

Implementation
dart
String get paddingLeft => this._paddingLeft;

set paddingLeft(String? value) {
  _paddingLeft = value == null ? '' : value;
}

paddingRight read / write override ​

String get paddingRight

getter:

Gets the value of "padding-right"

setter:

Sets the value of "padding-right"

Implementation
dart
String get paddingRight => this._paddingRight;

set paddingRight(String? value) {
  _paddingRight = value == null ? '' : value;
}

paddingStart read / write inherited ​

String get paddingStart

getter:

Gets the value of "padding-start"

setter:

Sets the value of "padding-start"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get paddingStart => getPropertyValue('padding-start');

set paddingStart(String value) {
  setProperty('padding-start', value, '');
}

paddingTop read / write override ​

String get paddingTop

getter:

Gets the value of "padding-top"

setter:

Sets the value of "padding-top"

Implementation
dart
String get paddingTop => this._paddingTop;

set paddingTop(String? value) {
  _paddingTop = value == null ? '' : value;
}

page read / write inherited ​

String get page

getter:

Gets the value of "page"

setter:

Sets the value of "page"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get page => getPropertyValue('page');

set page(String value) {
  setProperty('page', value, '');
}

pageBreakAfter read / write override ​

String get pageBreakAfter

getter:

Gets the value of "page-break-after"

setter:

Sets the value of "page-break-after"

Implementation
dart
String get pageBreakAfter => this._pageBreakAfter;

set pageBreakAfter(String? value) {
  _pageBreakAfter = value == null ? '' : value;
}

pageBreakBefore read / write override ​

String get pageBreakBefore

getter:

Gets the value of "page-break-before"

setter:

Sets the value of "page-break-before"

Implementation
dart
String get pageBreakBefore => this._pageBreakBefore;

set pageBreakBefore(String? value) {
  _pageBreakBefore = value == null ? '' : value;
}

pageBreakInside read / write override ​

String get pageBreakInside

getter:

Gets the value of "page-break-inside"

setter:

Sets the value of "page-break-inside"

Implementation
dart
String get pageBreakInside => this._pageBreakInside;

set pageBreakInside(String? value) {
  _pageBreakInside = value == null ? '' : value;
}

parentRule no setter ​

CssRule? get parentRule
Implementation
dart
CssRule? get parentRule native;

perspective read / write inherited ​

String get perspective

getter:

Gets the value of "perspective"

setter:

Sets the value of "perspective"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get perspective => getPropertyValue('perspective');

set perspective(String value) {
  setProperty('perspective', value, '');
}

perspectiveOrigin read / write inherited ​

String get perspectiveOrigin

getter:

Gets the value of "perspective-origin"

setter:

Sets the value of "perspective-origin"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get perspectiveOrigin => getPropertyValue('perspective-origin');

set perspectiveOrigin(String value) {
  setProperty('perspective-origin', value, '');
}

perspectiveOriginX read / write inherited ​

String get perspectiveOriginX

getter:

Gets the value of "perspective-origin-x"

setter:

Sets the value of "perspective-origin-x"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get perspectiveOriginX => getPropertyValue('perspective-origin-x');

set perspectiveOriginX(String value) {
  setProperty('perspective-origin-x', value, '');
}

perspectiveOriginY read / write inherited ​

String get perspectiveOriginY

getter:

Gets the value of "perspective-origin-y"

setter:

Sets the value of "perspective-origin-y"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get perspectiveOriginY => getPropertyValue('perspective-origin-y');

set perspectiveOriginY(String value) {
  setProperty('perspective-origin-y', value, '');
}

pointerEvents read / write inherited ​

String get pointerEvents

getter:

Gets the value of "pointer-events"

setter:

Sets the value of "pointer-events"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get pointerEvents => getPropertyValue('pointer-events');

set pointerEvents(String value) {
  setProperty('pointer-events', value, '');
}

position read / write override ​

String get position

getter:

Gets the value of "position"

setter:

Sets the value of "position"

Implementation
dart
String get position => this._position;

set position(String? value) {
  _position = value == null ? '' : value;
}

printColorAdjust read / write inherited ​

String get printColorAdjust

getter:

Gets the value of "print-color-adjust"

setter:

Sets the value of "print-color-adjust"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get printColorAdjust => getPropertyValue('print-color-adjust');

set printColorAdjust(String value) {
  setProperty('print-color-adjust', value, '');
}

quotes read / write override ​

String get quotes

getter:

Gets the value of "quotes"

setter:

Sets the value of "quotes"

Implementation
dart
String get quotes => this._quotes;

set quotes(String? value) {
  _quotes = value == null ? '' : value;
}

resize read / write inherited ​

String get resize

getter:

Gets the value of "resize"

setter:

Sets the value of "resize"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get resize => getPropertyValue('resize');

set resize(String value) {
  setProperty('resize', value, '');
}

right read / write override ​

String get right

getter:

Gets the value of "right"

setter:

Sets the value of "right"

Implementation
dart
String get right => this._right;

set right(String? value) {
  _right = value == null ? '' : value;
}

rowGap read / write inherited ​

String get rowGap

getter:

Gets the value of "row-gap"

setter:

Sets the value of "row-gap"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get rowGap => getPropertyValue('row-gap');

set rowGap(String value) {
  setProperty('row-gap', value, '');
}

rtlOrdering read / write inherited ​

String get rtlOrdering

getter:

Gets the value of "rtl-ordering"

setter:

Sets the value of "rtl-ordering"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get rtlOrdering => getPropertyValue('rtl-ordering');

set rtlOrdering(String value) {
  setProperty('rtl-ordering', value, '');
}

rubyPosition read / write inherited ​

String get rubyPosition

getter:

Gets the value of "ruby-position"

setter:

Sets the value of "ruby-position"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get rubyPosition => getPropertyValue('ruby-position');

set rubyPosition(String value) {
  setProperty('ruby-position', value, '');
}

runtimeType no setter inherited ​

Type get runtimeType

Inherited from Interceptor.

Implementation
dart
Type get runtimeType =>
    getRuntimeTypeOfInterceptorNotArray(getInterceptor(this), this);

scrollBehavior read / write inherited ​

String get scrollBehavior

getter:

Gets the value of "scroll-behavior"

setter:

Sets the value of "scroll-behavior"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get scrollBehavior => getPropertyValue('scroll-behavior');

set scrollBehavior(String value) {
  setProperty('scroll-behavior', value, '');
}

shapeImageThreshold read / write inherited ​

String get shapeImageThreshold

getter:

Gets the value of "shape-image-threshold"

setter:

Sets the value of "shape-image-threshold"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get shapeImageThreshold => getPropertyValue('shape-image-threshold');

set shapeImageThreshold(String value) {
  setProperty('shape-image-threshold', value, '');
}

shapeMargin read / write inherited ​

String get shapeMargin

getter:

Gets the value of "shape-margin"

setter:

Sets the value of "shape-margin"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get shapeMargin => getPropertyValue('shape-margin');

set shapeMargin(String value) {
  setProperty('shape-margin', value, '');
}

shapeOutside read / write inherited ​

String get shapeOutside

getter:

Gets the value of "shape-outside"

setter:

Sets the value of "shape-outside"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get shapeOutside => getPropertyValue('shape-outside');

set shapeOutside(String value) {
  setProperty('shape-outside', value, '');
}

size read / write inherited ​

String get size

getter:

Gets the value of "size"

setter:

Sets the value of "size"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get size => getPropertyValue('size');

set size(String value) {
  setProperty('size', value, '');
}

speak read / write inherited ​

String get speak

getter:

Gets the value of "speak"

setter:

Sets the value of "speak"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get speak => getPropertyValue('speak');

set speak(String value) {
  setProperty('speak', value, '');
}

src read / write inherited ​

String get src

getter:

Gets the value of "src"

setter:

Sets the value of "src"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get src => getPropertyValue('src');

set src(String value) {
  setProperty('src', value, '');
}

tableLayout read / write override ​

String get tableLayout

getter:

Gets the value of "table-layout"

setter:

Sets the value of "table-layout"

Implementation
dart
String get tableLayout => this._tableLayout;

set tableLayout(String? value) {
  _tableLayout = value == null ? '' : value;
}

tabSize read / write inherited ​

String get tabSize

getter:

Gets the value of "tab-size"

setter:

Sets the value of "tab-size"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get tabSize => getPropertyValue('tab-size');

set tabSize(String value) {
  setProperty('tab-size', value, '');
}

tapHighlightColor read / write inherited ​

String get tapHighlightColor

getter:

Gets the value of "tap-highlight-color"

setter:

Sets the value of "tap-highlight-color"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get tapHighlightColor => getPropertyValue('tap-highlight-color');

set tapHighlightColor(String value) {
  setProperty('tap-highlight-color', value, '');
}

textAlign read / write override ​

String get textAlign

getter:

Gets the value of "text-align"

setter:

Sets the value of "text-align"

Implementation
dart
String get textAlign => this._textAlign;

set textAlign(String? value) {
  _textAlign = value == null ? '' : value;
}

textAlignLast read / write inherited ​

String get textAlignLast

getter:

Gets the value of "text-align-last"

setter:

Sets the value of "text-align-last"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get textAlignLast => getPropertyValue('text-align-last');

set textAlignLast(String value) {
  setProperty('text-align-last', value, '');
}

textCombine read / write inherited ​

String get textCombine

getter:

Gets the value of "text-combine"

setter:

Sets the value of "text-combine"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get textCombine => getPropertyValue('text-combine');

set textCombine(String value) {
  setProperty('text-combine', value, '');
}

textDecoration read / write override ​

String get textDecoration

getter:

Gets the value of "text-decoration"

setter:

Sets the value of "text-decoration"

Implementation
dart
String get textDecoration => this._textDecoration;

set textDecoration(String? value) {
  _textDecoration = value == null ? '' : value;
}

textDecorationColor read / write inherited ​

String get textDecorationColor

getter:

Gets the value of "text-decoration-color"

setter:

Sets the value of "text-decoration-color"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get textDecorationColor => getPropertyValue('text-decoration-color');

set textDecorationColor(String value) {
  setProperty('text-decoration-color', value, '');
}

textDecorationLine read / write inherited ​

String get textDecorationLine

getter:

Gets the value of "text-decoration-line"

setter:

Sets the value of "text-decoration-line"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get textDecorationLine => getPropertyValue('text-decoration-line');

set textDecorationLine(String value) {
  setProperty('text-decoration-line', value, '');
}

textDecorationsInEffect read / write inherited ​

String get textDecorationsInEffect

getter:

Gets the value of "text-decorations-in-effect"

setter:

Sets the value of "text-decorations-in-effect"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get textDecorationsInEffect =>
    getPropertyValue('text-decorations-in-effect');

set textDecorationsInEffect(String value) {
  setProperty('text-decorations-in-effect', value, '');
}

textDecorationStyle read / write inherited ​

String get textDecorationStyle

getter:

Gets the value of "text-decoration-style"

setter:

Sets the value of "text-decoration-style"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get textDecorationStyle => getPropertyValue('text-decoration-style');

set textDecorationStyle(String value) {
  setProperty('text-decoration-style', value, '');
}

textEmphasis read / write inherited ​

String get textEmphasis

getter:

Gets the value of "text-emphasis"

setter:

Sets the value of "text-emphasis"

Inherited from CssStyleDeclarationBase.

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

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

textEmphasisColor read / write inherited ​

String get textEmphasisColor

getter:

Gets the value of "text-emphasis-color"

setter:

Sets the value of "text-emphasis-color"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get textEmphasisColor => getPropertyValue('text-emphasis-color');

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

textEmphasisPosition read / write inherited ​

String get textEmphasisPosition

getter:

Gets the value of "text-emphasis-position"

setter:

Sets the value of "text-emphasis-position"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get textEmphasisPosition => getPropertyValue('text-emphasis-position');

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

textEmphasisStyle read / write inherited ​

String get textEmphasisStyle

getter:

Gets the value of "text-emphasis-style"

setter:

Sets the value of "text-emphasis-style"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get textEmphasisStyle => getPropertyValue('text-emphasis-style');

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

textFillColor read / write inherited ​

String get textFillColor

getter:

Gets the value of "text-fill-color"

setter:

Sets the value of "text-fill-color"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get textFillColor => getPropertyValue('text-fill-color');

set textFillColor(String value) {
  setProperty('text-fill-color', value, '');
}

textIndent read / write override ​

String get textIndent

getter:

Gets the value of "text-indent"

setter:

Sets the value of "text-indent"

Implementation
dart
String get textIndent => this._textIndent;

set textIndent(String? value) {
  _textIndent = value == null ? '' : value;
}

textJustify read / write inherited ​

String get textJustify

getter:

Gets the value of "text-justify"

setter:

Sets the value of "text-justify"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get textJustify => getPropertyValue('text-justify');

set textJustify(String value) {
  setProperty('text-justify', value, '');
}

textLineThroughColor read / write inherited ​

String get textLineThroughColor

getter:

Gets the value of "text-line-through-color"

setter:

Sets the value of "text-line-through-color"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get textLineThroughColor =>
    getPropertyValue('text-line-through-color');

set textLineThroughColor(String value) {
  setProperty('text-line-through-color', value, '');
}

textLineThroughMode read / write inherited ​

String get textLineThroughMode

getter:

Gets the value of "text-line-through-mode"

setter:

Sets the value of "text-line-through-mode"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get textLineThroughMode => getPropertyValue('text-line-through-mode');

set textLineThroughMode(String value) {
  setProperty('text-line-through-mode', value, '');
}

textLineThroughStyle read / write inherited ​

String get textLineThroughStyle

getter:

Gets the value of "text-line-through-style"

setter:

Sets the value of "text-line-through-style"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get textLineThroughStyle =>
    getPropertyValue('text-line-through-style');

set textLineThroughStyle(String value) {
  setProperty('text-line-through-style', value, '');
}

textLineThroughWidth read / write inherited ​

String get textLineThroughWidth

getter:

Gets the value of "text-line-through-width"

setter:

Sets the value of "text-line-through-width"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get textLineThroughWidth =>
    getPropertyValue('text-line-through-width');

set textLineThroughWidth(String value) {
  setProperty('text-line-through-width', value, '');
}

textOrientation read / write inherited ​

String get textOrientation

getter:

Gets the value of "text-orientation"

setter:

Sets the value of "text-orientation"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get textOrientation => getPropertyValue('text-orientation');

set textOrientation(String value) {
  setProperty('text-orientation', value, '');
}

textOverflow read / write inherited ​

String get textOverflow

getter:

Gets the value of "text-overflow"

setter:

Sets the value of "text-overflow"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get textOverflow => getPropertyValue('text-overflow');

set textOverflow(String value) {
  setProperty('text-overflow', value, '');
}

textOverlineColor read / write inherited ​

String get textOverlineColor

getter:

Gets the value of "text-overline-color"

setter:

Sets the value of "text-overline-color"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get textOverlineColor => getPropertyValue('text-overline-color');

set textOverlineColor(String value) {
  setProperty('text-overline-color', value, '');
}

textOverlineMode read / write inherited ​

String get textOverlineMode

getter:

Gets the value of "text-overline-mode"

setter:

Sets the value of "text-overline-mode"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get textOverlineMode => getPropertyValue('text-overline-mode');

set textOverlineMode(String value) {
  setProperty('text-overline-mode', value, '');
}

textOverlineStyle read / write inherited ​

String get textOverlineStyle

getter:

Gets the value of "text-overline-style"

setter:

Sets the value of "text-overline-style"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get textOverlineStyle => getPropertyValue('text-overline-style');

set textOverlineStyle(String value) {
  setProperty('text-overline-style', value, '');
}

textOverlineWidth read / write inherited ​

String get textOverlineWidth

getter:

Gets the value of "text-overline-width"

setter:

Sets the value of "text-overline-width"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get textOverlineWidth => getPropertyValue('text-overline-width');

set textOverlineWidth(String value) {
  setProperty('text-overline-width', value, '');
}

textRendering read / write inherited ​

String get textRendering

getter:

Gets the value of "text-rendering"

setter:

Sets the value of "text-rendering"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get textRendering => getPropertyValue('text-rendering');

set textRendering(String value) {
  setProperty('text-rendering', value, '');
}

textSecurity read / write inherited ​

String get textSecurity

getter:

Gets the value of "text-security"

setter:

Sets the value of "text-security"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get textSecurity => getPropertyValue('text-security');

set textSecurity(String value) {
  setProperty('text-security', value, '');
}

textShadow read / write inherited ​

String get textShadow

getter:

Gets the value of "text-shadow"

setter:

Sets the value of "text-shadow"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get textShadow => getPropertyValue('text-shadow');

set textShadow(String value) {
  setProperty('text-shadow', value, '');
}

textStroke read / write inherited ​

String get textStroke

getter:

Gets the value of "text-stroke"

setter:

Sets the value of "text-stroke"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get textStroke => getPropertyValue('text-stroke');

set textStroke(String value) {
  setProperty('text-stroke', value, '');
}

textStrokeColor read / write inherited ​

String get textStrokeColor

getter:

Gets the value of "text-stroke-color"

setter:

Sets the value of "text-stroke-color"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get textStrokeColor => getPropertyValue('text-stroke-color');

set textStrokeColor(String value) {
  setProperty('text-stroke-color', value, '');
}

textStrokeWidth read / write inherited ​

String get textStrokeWidth

getter:

Gets the value of "text-stroke-width"

setter:

Sets the value of "text-stroke-width"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get textStrokeWidth => getPropertyValue('text-stroke-width');

set textStrokeWidth(String value) {
  setProperty('text-stroke-width', value, '');
}

textTransform read / write override ​

String get textTransform

getter:

Gets the value of "text-transform"

setter:

Sets the value of "text-transform"

Implementation
dart
String get textTransform => this._textTransform;

set textTransform(String? value) {
  _textTransform = value == null ? '' : value;
}

textUnderlineColor read / write inherited ​

String get textUnderlineColor

getter:

Gets the value of "text-underline-color"

setter:

Sets the value of "text-underline-color"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get textUnderlineColor => getPropertyValue('text-underline-color');

set textUnderlineColor(String value) {
  setProperty('text-underline-color', value, '');
}

textUnderlineMode read / write inherited ​

String get textUnderlineMode

getter:

Gets the value of "text-underline-mode"

setter:

Sets the value of "text-underline-mode"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get textUnderlineMode => getPropertyValue('text-underline-mode');

set textUnderlineMode(String value) {
  setProperty('text-underline-mode', value, '');
}

textUnderlinePosition read / write inherited ​

String get textUnderlinePosition

getter:

Gets the value of "text-underline-position"

setter:

Sets the value of "text-underline-position"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get textUnderlinePosition =>
    getPropertyValue('text-underline-position');

set textUnderlinePosition(String value) {
  setProperty('text-underline-position', value, '');
}

textUnderlineStyle read / write inherited ​

String get textUnderlineStyle

getter:

Gets the value of "text-underline-style"

setter:

Sets the value of "text-underline-style"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get textUnderlineStyle => getPropertyValue('text-underline-style');

set textUnderlineStyle(String value) {
  setProperty('text-underline-style', value, '');
}

textUnderlineWidth read / write inherited ​

String get textUnderlineWidth

getter:

Gets the value of "text-underline-width"

setter:

Sets the value of "text-underline-width"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get textUnderlineWidth => getPropertyValue('text-underline-width');

set textUnderlineWidth(String value) {
  setProperty('text-underline-width', value, '');
}

top read / write override ​

String get top

getter:

Gets the value of "top"

setter:

Sets the value of "top"

Implementation
dart
String get top => this._top;

set top(String? value) {
  _top = value == null ? '' : value;
}

touchAction read / write inherited ​

String get touchAction

getter:

Gets the value of "touch-action"

setter:

Sets the value of "touch-action"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get touchAction => getPropertyValue('touch-action');

set touchAction(String value) {
  setProperty('touch-action', value, '');
}

touchActionDelay read / write inherited ​

String get touchActionDelay

getter:

Gets the value of "touch-action-delay"

setter:

Sets the value of "touch-action-delay"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get touchActionDelay => getPropertyValue('touch-action-delay');

set touchActionDelay(String value) {
  setProperty('touch-action-delay', value, '');
}

transform read / write inherited ​

String get transform

getter:

Gets the value of "transform"

setter:

Sets the value of "transform"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get transform => getPropertyValue('transform');

set transform(String value) {
  setProperty('transform', value, '');
}

transformOrigin read / write inherited ​

String get transformOrigin

getter:

Gets the value of "transform-origin"

setter:

Sets the value of "transform-origin"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get transformOrigin => getPropertyValue('transform-origin');

set transformOrigin(String value) {
  setProperty('transform-origin', value, '');
}

transformOriginX read / write inherited ​

String get transformOriginX

getter:

Gets the value of "transform-origin-x"

setter:

Sets the value of "transform-origin-x"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get transformOriginX => getPropertyValue('transform-origin-x');

set transformOriginX(String value) {
  setProperty('transform-origin-x', value, '');
}

transformOriginY read / write inherited ​

String get transformOriginY

getter:

Gets the value of "transform-origin-y"

setter:

Sets the value of "transform-origin-y"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get transformOriginY => getPropertyValue('transform-origin-y');

set transformOriginY(String value) {
  setProperty('transform-origin-y', value, '');
}

transformOriginZ read / write inherited ​

String get transformOriginZ

getter:

Gets the value of "transform-origin-z"

setter:

Sets the value of "transform-origin-z"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get transformOriginZ => getPropertyValue('transform-origin-z');

set transformOriginZ(String value) {
  setProperty('transform-origin-z', value, '');
}

transformStyle read / write inherited ​

String get transformStyle

getter:

Gets the value of "transform-style"

setter:

Sets the value of "transform-style"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get transformStyle => getPropertyValue('transform-style');

set transformStyle(String value) {
  setProperty('transform-style', value, '');
}

transition read / write inherited ​

String get transition

getter:

Gets the value of "transition"

setter:

Sets the value of "transition"

Inherited from CssStyleDeclarationBase.

Implementation
dart
@SupportedBrowser(SupportedBrowser.CHROME)
@SupportedBrowser(SupportedBrowser.FIREFOX)
@SupportedBrowser(SupportedBrowser.IE, '10')
@SupportedBrowser(SupportedBrowser.SAFARI)
String get transition => getPropertyValue('transition');

@SupportedBrowser(SupportedBrowser.CHROME)
@SupportedBrowser(SupportedBrowser.FIREFOX)
@SupportedBrowser(SupportedBrowser.IE, '10')
@SupportedBrowser(SupportedBrowser.SAFARI)
set transition(String value) {
  setProperty('transition', value, '');
}

transitionDelay read / write inherited ​

String get transitionDelay

getter:

Gets the value of "transition-delay"

setter:

Sets the value of "transition-delay"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get transitionDelay => getPropertyValue('transition-delay');

set transitionDelay(String value) {
  setProperty('transition-delay', value, '');
}

transitionDuration read / write inherited ​

String get transitionDuration

getter:

Gets the value of "transition-duration"

setter:

Sets the value of "transition-duration"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get transitionDuration => getPropertyValue('transition-duration');

set transitionDuration(String value) {
  setProperty('transition-duration', value, '');
}

transitionProperty read / write inherited ​

String get transitionProperty

getter:

Gets the value of "transition-property"

setter:

Sets the value of "transition-property"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get transitionProperty => getPropertyValue('transition-property');

set transitionProperty(String value) {
  setProperty('transition-property', value, '');
}

transitionTimingFunction read / write inherited ​

String get transitionTimingFunction

getter:

Gets the value of "transition-timing-function"

setter:

Sets the value of "transition-timing-function"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get transitionTimingFunction =>
    getPropertyValue('transition-timing-function');

set transitionTimingFunction(String value) {
  setProperty('transition-timing-function', value, '');
}

unicodeBidi read / write override ​

String get unicodeBidi

getter:

Gets the value of "unicode-bidi"

setter:

Sets the value of "unicode-bidi"

Implementation
dart
String get unicodeBidi => this._unicodeBidi;

set unicodeBidi(String? value) {
  _unicodeBidi = value == null ? '' : value;
}

unicodeRange read / write inherited ​

String get unicodeRange

getter:

Gets the value of "unicode-range"

setter:

Sets the value of "unicode-range"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get unicodeRange => getPropertyValue('unicode-range');

set unicodeRange(String value) {
  setProperty('unicode-range', value, '');
}

userDrag read / write inherited ​

String get userDrag

getter:

Gets the value of "user-drag"

setter:

Sets the value of "user-drag"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get userDrag => getPropertyValue('user-drag');

set userDrag(String value) {
  setProperty('user-drag', value, '');
}

userModify read / write inherited ​

String get userModify

getter:

Gets the value of "user-modify"

setter:

Sets the value of "user-modify"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get userModify => getPropertyValue('user-modify');

set userModify(String value) {
  setProperty('user-modify', value, '');
}

userSelect read / write inherited ​

String get userSelect

getter:

Gets the value of "user-select"

setter:

Sets the value of "user-select"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get userSelect => getPropertyValue('user-select');

set userSelect(String value) {
  setProperty('user-select', value, '');
}

userZoom read / write inherited ​

String get userZoom

getter:

Gets the value of "user-zoom"

setter:

Sets the value of "user-zoom"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get userZoom => getPropertyValue('user-zoom');

set userZoom(String value) {
  setProperty('user-zoom', value, '');
}

verticalAlign read / write override ​

String get verticalAlign

getter:

Gets the value of "vertical-align"

setter:

Sets the value of "vertical-align"

Implementation
dart
String get verticalAlign => this._verticalAlign;

set verticalAlign(String? value) {
  _verticalAlign = value == null ? '' : value;
}

visibility read / write override ​

String get visibility

getter:

Gets the value of "visibility"

setter:

Sets the value of "visibility"

Implementation
dart
String get visibility => this._visibility;

set visibility(String? value) {
  _visibility = value == null ? '' : value;
}

whiteSpace read / write override ​

String get whiteSpace

getter:

Gets the value of "white-space"

setter:

Sets the value of "white-space"

Implementation
dart
String get whiteSpace => this._whiteSpace;

set whiteSpace(String? value) {
  _whiteSpace = value == null ? '' : value;
}

widows read / write inherited ​

String get widows

getter:

Gets the value of "widows"

setter:

Sets the value of "widows"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get widows => getPropertyValue('widows');

set widows(String value) {
  setProperty('widows', value, '');
}

width read / write override ​

String get width

getter:

Gets the value of "width"

setter:

Sets the value of "width"

Implementation
dart
String get width => this._width;

set width(String? value) {
  _width = value == null ? '' : value;
}

willChange read / write inherited ​

String get willChange

getter:

Gets the value of "will-change"

setter:

Sets the value of "will-change"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get willChange => getPropertyValue('will-change');

set willChange(String value) {
  setProperty('will-change', value, '');
}

wordBreak read / write inherited ​

String get wordBreak

getter:

Gets the value of "word-break"

setter:

Sets the value of "word-break"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get wordBreak => getPropertyValue('word-break');

set wordBreak(String value) {
  setProperty('word-break', value, '');
}

wordSpacing read / write override ​

String get wordSpacing

getter:

Gets the value of "word-spacing"

setter:

Sets the value of "word-spacing"

Implementation
dart
String get wordSpacing => this._wordSpacing;

set wordSpacing(String? value) {
  _wordSpacing = value == null ? '' : value;
}

wordWrap read / write inherited ​

String get wordWrap

getter:

Gets the value of "word-wrap"

setter:

Sets the value of "word-wrap"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get wordWrap => getPropertyValue('word-wrap');

set wordWrap(String value) {
  setProperty('word-wrap', value, '');
}

wrapFlow read / write inherited ​

String get wrapFlow

getter:

Gets the value of "wrap-flow"

setter:

Sets the value of "wrap-flow"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get wrapFlow => getPropertyValue('wrap-flow');

set wrapFlow(String value) {
  setProperty('wrap-flow', value, '');
}

wrapThrough read / write inherited ​

String get wrapThrough

getter:

Gets the value of "wrap-through"

setter:

Sets the value of "wrap-through"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get wrapThrough => getPropertyValue('wrap-through');

set wrapThrough(String value) {
  setProperty('wrap-through', value, '');
}

writingMode read / write inherited ​

String get writingMode

getter:

Gets the value of "writing-mode"

setter:

Sets the value of "writing-mode"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get writingMode => getPropertyValue('writing-mode');

set writingMode(String value) {
  setProperty('writing-mode', value, '');
}

zIndex read / write override ​

String get zIndex

getter:

Gets the value of "z-index"

setter:

Sets the value of "z-index"

Implementation
dart
String get zIndex => this._zIndex;

set zIndex(String? value) {
  _zIndex = value == null ? '' : value;
}

zoom read / write inherited ​

String get zoom

getter:

Gets the value of "zoom"

setter:

Sets the value of "zoom"

Inherited from CssStyleDeclarationBase.

Implementation
dart
String get zoom => getPropertyValue('zoom');

set zoom(String value) {
  setProperty('zoom', value, '');
}

Methods ​

getPropertyPriority() ​

String getPropertyPriority(String property)
Implementation
dart
String getPropertyPriority(String property) native;

getPropertyValue() override ​

String getPropertyValue(String propertyName)

Returns the value of the property if the provided CSS property name is supported on this element and if the value is set. Otherwise returns an empty string.

Please note the property name uses camelCase, not-hyphens.

Implementation
dart
String getPropertyValue(String propertyName) {
  return _getPropertyValueHelper(propertyName);
}

item() ​

String item(int index)
Implementation
dart
String item(int index) native;

noSuchMethod() inherited ​

dynamic noSuchMethod(Invocation invocation)

Invoked when a nonexistent method or property is accessed.

A dynamic member invocation can attempt to call a member which doesn't exist on the receiving object. Example:

dart
dynamic object = 1;
object.add(42); // Statically allowed, run-time error

This invalid code will invoke the noSuchMethod method of the integer 1 with an Invocation representing the .add(42) call and arguments (which then throws).

Classes can override noSuchMethod to provide custom behavior for such invalid dynamic invocations.

A class with a non-default noSuchMethod invocation can also omit implementations for members of its interface. Example:

dart
class MockList<T> implements List<T> {
  noSuchMethod(Invocation invocation) {
    log(invocation);
    super.noSuchMethod(invocation); // Will throw.
  }
}
void main() {
  MockList().add(42);
}

This code has no compile-time warnings or errors even though the MockList class has no concrete implementation of any of the List interface methods. Calls to List methods are forwarded to noSuchMethod, so this code will log an invocation similar to Invocation.method(#add, [42]) and then throw.

If a value is returned from noSuchMethod, it becomes the result of the original invocation. If the value is not of a type that can be returned by the original invocation, a type error occurs at the invocation.

The default behavior is to throw a NoSuchMethodError.

Inherited from Interceptor.

Implementation
dart
dynamic noSuchMethod(Invocation invocation) {
  throw NoSuchMethodError.withInvocation(this, invocation);
}

removeProperty() ​

String removeProperty(String property)
Implementation
dart
String removeProperty(String property) native;

setProperty() override ​

void setProperty(String propertyName, String? value, [String? priority])
Implementation
dart
void setProperty(String propertyName, String? value, [String? priority]) {
  return _setPropertyHelper(
    _browserPropertyName(propertyName),
    value,
    priority,
  );
}

supportsProperty() ​

bool supportsProperty(String propertyName)

Returns true if the provided CSS property name is supported on this element.

Please note the property name camelCase, not-hyphens. This method returns true if the property is accessible via an unprefixed or prefixed property.

Implementation
dart
bool supportsProperty(String propertyName) {
  return _supportsProperty(propertyName) ||
      _supportsProperty(_camelCase("${Device.cssPrefix}$propertyName"));
}

toString() inherited ​

String toString()

A string representation of this object.

Some classes have a default textual representation, often paired with a static parse function (like int.parse). These classes will provide the textual representation as their string representation.

Other classes have no meaningful textual representation that a program will care about. Such classes will typically override toString to provide useful information when inspecting the object, mainly for debugging or logging.

Inherited from Interceptor.

Implementation
dart
String toString() => Primitives.objectToHumanReadableString(this);

Operators ​

operator ==() inherited ​

bool operator ==(Object other)

The equality operator.

The default behavior for all Objects is to return true if and only if this object and other are the same object.

Override this method to specify a different equality relation on a class. The overriding method must still be an equivalence relation. That is, it must be:

  • Total: It must return a boolean for all arguments. It should never throw.

  • Reflexive: For all objects o, o == o must be true.

  • Symmetric: For all objects o1 and o2, o1 == o2 and o2 == o1 must either both be true, or both be false.

  • Transitive: For all objects o1, o2, and o3, if o1 == o2 and o2 == o3 are true, then o1 == o3 must be true.

The method should also be consistent over time, so whether two objects are equal should only change if at least one of the objects was modified.

If a subclass overrides the equality operator, it should override the hashCode method as well to maintain consistency.

Inherited from Interceptor.

Implementation
dart
bool operator ==(Object other) => identical(this, other);

Static Properties ​

supportsTransitions no setter ​

bool get supportsTransitions

Checks to see if CSS Transitions are supported.

Implementation
dart
static bool get supportsTransitions {
  return document.body!.style.supportsProperty('transition');
}