CssStyleDeclaration#
Annotations: @Native.new("CSSStyleDeclaration,MSStyleCSSProperties,CSS2Properties")
Mixed-in types
Constructors#
CssStyleDeclaration() factory#
Implementation
factory CssStyleDeclaration() => new CssStyleDeclaration.css('');
CssStyleDeclaration.css() factory#
Implementation
factory CssStyleDeclaration.css(String css) {
final style = new DivElement().style;
style.cssText = css;
return style;
}
Properties#
alignContent read / write inherited#
getter:
Gets the value of "align-content"
setter:
Sets the value of "align-content"
Inherited from CssStyleDeclarationBase.
Implementation
String get alignContent => getPropertyValue('align-content');
set alignContent(String value) {
setProperty('align-content', value, '');
}
alignItems read / write inherited#
getter:
Gets the value of "align-items"
setter:
Sets the value of "align-items"
Inherited from CssStyleDeclarationBase.
Implementation
String get alignItems => getPropertyValue('align-items');
set alignItems(String value) {
setProperty('align-items', value, '');
}
alignSelf read / write inherited#
getter:
Gets the value of "align-self"
setter:
Sets the value of "align-self"
Inherited from CssStyleDeclarationBase.
Implementation
String get alignSelf => getPropertyValue('align-self');
set alignSelf(String value) {
setProperty('align-self', value, '');
}
animation read / write inherited#
getter:
Gets the value of "animation"
setter:
Sets the value of "animation"
Inherited from CssStyleDeclarationBase.
Implementation
String get animation => getPropertyValue('animation');
set animation(String value) {
setProperty('animation', value, '');
}
animationDelay read / write inherited#
getter:
Gets the value of "animation-delay"
setter:
Sets the value of "animation-delay"
Inherited from CssStyleDeclarationBase.
Implementation
String get animationDelay => getPropertyValue('animation-delay');
set animationDelay(String value) {
setProperty('animation-delay', value, '');
}
animationDirection read / write inherited#
getter:
Gets the value of "animation-direction"
setter:
Sets the value of "animation-direction"
Inherited from CssStyleDeclarationBase.
Implementation
String get animationDirection => getPropertyValue('animation-direction');
set animationDirection(String value) {
setProperty('animation-direction', value, '');
}
animationDuration read / write inherited#
getter:
Gets the value of "animation-duration"
setter:
Sets the value of "animation-duration"
Inherited from CssStyleDeclarationBase.
Implementation
String get animationDuration => getPropertyValue('animation-duration');
set animationDuration(String value) {
setProperty('animation-duration', value, '');
}
animationFillMode read / write inherited#
getter:
Gets the value of "animation-fill-mode"
setter:
Sets the value of "animation-fill-mode"
Inherited from CssStyleDeclarationBase.
Implementation
String get animationFillMode => getPropertyValue('animation-fill-mode');
set animationFillMode(String value) {
setProperty('animation-fill-mode', value, '');
}
animationIterationCount read / write inherited#
getter:
Gets the value of "animation-iteration-count"
setter:
Sets the value of "animation-iteration-count"
Inherited from CssStyleDeclarationBase.
Implementation
String get animationIterationCount =>
getPropertyValue('animation-iteration-count');
set animationIterationCount(String value) {
setProperty('animation-iteration-count', value, '');
}
animationName read / write inherited#
getter:
Gets the value of "animation-name"
setter:
Sets the value of "animation-name"
Inherited from CssStyleDeclarationBase.
Implementation
String get animationName => getPropertyValue('animation-name');
set animationName(String value) {
setProperty('animation-name', value, '');
}
animationPlayState read / write inherited#
getter:
Gets the value of "animation-play-state"
setter:
Sets the value of "animation-play-state"
Inherited from CssStyleDeclarationBase.
Implementation
String get animationPlayState => getPropertyValue('animation-play-state');
set animationPlayState(String value) {
setProperty('animation-play-state', value, '');
}
animationTimingFunction read / write inherited#
getter:
Gets the value of "animation-timing-function"
setter:
Sets the value of "animation-timing-function"
Inherited from CssStyleDeclarationBase.
Implementation
String get animationTimingFunction =>
getPropertyValue('animation-timing-function');
set animationTimingFunction(String value) {
setProperty('animation-timing-function', value, '');
}
appearance read / write inherited#
getter:
Gets the value of "appearance"
setter:
Sets the value of "appearance"
Inherited from CssStyleDeclarationBase.
Implementation
String get appearance => getPropertyValue('appearance');
set appearance(String value) {
setProperty('appearance', value, '');
}
appRegion read / write inherited#
getter:
Gets the value of "app-region"
setter:
Sets the value of "app-region"
Inherited from CssStyleDeclarationBase.
Implementation
String get appRegion => getPropertyValue('app-region');
set appRegion(String value) {
setProperty('app-region', value, '');
}
aspectRatio read / write inherited#
getter:
Gets the value of "aspect-ratio"
setter:
Sets the value of "aspect-ratio"
Inherited from CssStyleDeclarationBase.
Implementation
String get aspectRatio => getPropertyValue('aspect-ratio');
set aspectRatio(String value) {
setProperty('aspect-ratio', value, '');
}
backfaceVisibility read / write inherited#
getter:
Gets the value of "backface-visibility"
setter:
Sets the value of "backface-visibility"
Inherited from CssStyleDeclarationBase.
Implementation
String get backfaceVisibility => getPropertyValue('backface-visibility');
set backfaceVisibility(String value) {
setProperty('backface-visibility', value, '');
}
background read / write override#
getter:
Gets the value of "background"
setter:
Sets the value of "background"
Implementation
String get background => this._background;
set background(String? value) {
_background = value == null ? '' : value;
}
backgroundAttachment read / write override#
getter:
Gets the value of "background-attachment"
setter:
Sets the value of "background-attachment"
Implementation
String get backgroundAttachment => this._backgroundAttachment;
set backgroundAttachment(String? value) {
_backgroundAttachment = value == null ? '' : value;
}
backgroundBlendMode read / write inherited#
getter:
Gets the value of "background-blend-mode"
setter:
Sets the value of "background-blend-mode"
Inherited from CssStyleDeclarationBase.
Implementation
String get backgroundBlendMode => getPropertyValue('background-blend-mode');
set backgroundBlendMode(String value) {
setProperty('background-blend-mode', value, '');
}
backgroundClip read / write inherited#
getter:
Gets the value of "background-clip"
setter:
Sets the value of "background-clip"
Inherited from CssStyleDeclarationBase.
Implementation
String get backgroundClip => getPropertyValue('background-clip');
set backgroundClip(String value) {
setProperty('background-clip', value, '');
}
backgroundColor read / write override#
getter:
Gets the value of "background-color"
setter:
Sets the value of "background-color"
Implementation
String get backgroundColor => this._backgroundColor;
set backgroundColor(String? value) {
_backgroundColor = value == null ? '' : value;
}
backgroundComposite read / write inherited#
getter:
Gets the value of "background-composite"
setter:
Sets the value of "background-composite"
Inherited from CssStyleDeclarationBase.
Implementation
String get backgroundComposite => getPropertyValue('background-composite');
set backgroundComposite(String value) {
setProperty('background-composite', value, '');
}
backgroundImage read / write override#
getter:
Gets the value of "background-image"
setter:
Sets the value of "background-image"
Implementation
String get backgroundImage => this._backgroundImage;
set backgroundImage(String? value) {
_backgroundImage = value == null ? '' : value;
}
backgroundOrigin read / write inherited#
getter:
Gets the value of "background-origin"
setter:
Sets the value of "background-origin"
Inherited from CssStyleDeclarationBase.
Implementation
String get backgroundOrigin => getPropertyValue('background-origin');
set backgroundOrigin(String value) {
setProperty('background-origin', value, '');
}
backgroundPosition read / write override#
getter:
Gets the value of "background-position"
setter:
Sets the value of "background-position"
Implementation
String get backgroundPosition => this._backgroundPosition;
set backgroundPosition(String? value) {
_backgroundPosition = value == null ? '' : value;
}
backgroundPositionX read / write inherited#
getter:
Gets the value of "background-position-x"
setter:
Sets the value of "background-position-x"
Inherited from CssStyleDeclarationBase.
Implementation
String get backgroundPositionX => getPropertyValue('background-position-x');
set backgroundPositionX(String value) {
setProperty('background-position-x', value, '');
}
backgroundPositionY read / write inherited#
getter:
Gets the value of "background-position-y"
setter:
Sets the value of "background-position-y"
Inherited from CssStyleDeclarationBase.
Implementation
String get backgroundPositionY => getPropertyValue('background-position-y');
set backgroundPositionY(String value) {
setProperty('background-position-y', value, '');
}
backgroundRepeat read / write override#
getter:
Gets the value of "background-repeat"
setter:
Sets the value of "background-repeat"
Implementation
String get backgroundRepeat => this._backgroundRepeat;
set backgroundRepeat(String? value) {
_backgroundRepeat = value == null ? '' : value;
}
backgroundRepeatX read / write inherited#
getter:
Gets the value of "background-repeat-x"
setter:
Sets the value of "background-repeat-x"
Inherited from CssStyleDeclarationBase.
Implementation
String get backgroundRepeatX => getPropertyValue('background-repeat-x');
set backgroundRepeatX(String value) {
setProperty('background-repeat-x', value, '');
}
backgroundRepeatY read / write inherited#
getter:
Gets the value of "background-repeat-y"
setter:
Sets the value of "background-repeat-y"
Inherited from CssStyleDeclarationBase.
Implementation
String get backgroundRepeatY => getPropertyValue('background-repeat-y');
set backgroundRepeatY(String value) {
setProperty('background-repeat-y', value, '');
}
backgroundSize read / write inherited#
getter:
Gets the value of "background-size"
setter:
Sets the value of "background-size"
Inherited from CssStyleDeclarationBase.
Implementation
String get backgroundSize => getPropertyValue('background-size');
set backgroundSize(String value) {
setProperty('background-size', value, '');
}
border read / write override#
getter:
Gets the value of "border"
setter:
Sets the value of "border"
Implementation
String get border => this._border;
set border(String? value) {
_border = value == null ? '' : value;
}
borderAfter read / write inherited#
getter:
Gets the value of "border-after"
setter:
Sets the value of "border-after"
Inherited from CssStyleDeclarationBase.
Implementation
String get borderAfter => getPropertyValue('border-after');
set borderAfter(String value) {
setProperty('border-after', value, '');
}
borderAfterColor read / write inherited#
getter:
Gets the value of "border-after-color"
setter:
Sets the value of "border-after-color"
Inherited from CssStyleDeclarationBase.
Implementation
String get borderAfterColor => getPropertyValue('border-after-color');
set borderAfterColor(String value) {
setProperty('border-after-color', value, '');
}
borderAfterStyle read / write inherited#
getter:
Gets the value of "border-after-style"
setter:
Sets the value of "border-after-style"
Inherited from CssStyleDeclarationBase.
Implementation
String get borderAfterStyle => getPropertyValue('border-after-style');
set borderAfterStyle(String value) {
setProperty('border-after-style', value, '');
}
borderAfterWidth read / write inherited#
getter:
Gets the value of "border-after-width"
setter:
Sets the value of "border-after-width"
Inherited from CssStyleDeclarationBase.
Implementation
String get borderAfterWidth => getPropertyValue('border-after-width');
set borderAfterWidth(String value) {
setProperty('border-after-width', value, '');
}
borderBefore read / write inherited#
getter:
Gets the value of "border-before"
setter:
Sets the value of "border-before"
Inherited from CssStyleDeclarationBase.
Implementation
String get borderBefore => getPropertyValue('border-before');
set borderBefore(String value) {
setProperty('border-before', value, '');
}
borderBeforeColor read / write inherited#
getter:
Gets the value of "border-before-color"
setter:
Sets the value of "border-before-color"
Inherited from CssStyleDeclarationBase.
Implementation
String get borderBeforeColor => getPropertyValue('border-before-color');
set borderBeforeColor(String value) {
setProperty('border-before-color', value, '');
}
borderBeforeStyle read / write inherited#
getter:
Gets the value of "border-before-style"
setter:
Sets the value of "border-before-style"
Inherited from CssStyleDeclarationBase.
Implementation
String get borderBeforeStyle => getPropertyValue('border-before-style');
set borderBeforeStyle(String value) {
setProperty('border-before-style', value, '');
}
borderBeforeWidth read / write inherited#
getter:
Gets the value of "border-before-width"
setter:
Sets the value of "border-before-width"
Inherited from CssStyleDeclarationBase.
Implementation
String get borderBeforeWidth => getPropertyValue('border-before-width');
set borderBeforeWidth(String value) {
setProperty('border-before-width', value, '');
}
borderBottom read / write override#
getter:
Gets the value of "border-bottom"
setter:
Sets the value of "border-bottom"
Implementation
String get borderBottom => this._borderBottom;
set borderBottom(String? value) {
_borderBottom = value == null ? '' : value;
}
borderBottomColor read / write override#
getter:
Gets the value of "border-bottom-color"
setter:
Sets the value of "border-bottom-color"
Implementation
String get borderBottomColor => this._borderBottomColor;
set borderBottomColor(String? value) {
_borderBottomColor = value == null ? '' : value;
}
borderBottomLeftRadius read / write inherited#
getter:
Gets the value of "border-bottom-left-radius"
setter:
Sets the value of "border-bottom-left-radius"
Inherited from CssStyleDeclarationBase.
Implementation
String get borderBottomLeftRadius =>
getPropertyValue('border-bottom-left-radius');
set borderBottomLeftRadius(String value) {
setProperty('border-bottom-left-radius', value, '');
}
borderBottomRightRadius read / write inherited#
getter:
Gets the value of "border-bottom-right-radius"
setter:
Sets the value of "border-bottom-right-radius"
Inherited from CssStyleDeclarationBase.
Implementation
String get borderBottomRightRadius =>
getPropertyValue('border-bottom-right-radius');
set borderBottomRightRadius(String value) {
setProperty('border-bottom-right-radius', value, '');
}
borderBottomStyle read / write override#
getter:
Gets the value of "border-bottom-style"
setter:
Sets the value of "border-bottom-style"
Implementation
String get borderBottomStyle => this._borderBottomStyle;
set borderBottomStyle(String? value) {
_borderBottomStyle = value == null ? '' : value;
}
borderBottomWidth read / write override#
getter:
Gets the value of "border-bottom-width"
setter:
Sets the value of "border-bottom-width"
Implementation
String get borderBottomWidth => this._borderBottomWidth;
set borderBottomWidth(String? value) {
_borderBottomWidth = value == null ? '' : value;
}
borderCollapse read / write override#
getter:
Gets the value of "border-collapse"
setter:
Sets the value of "border-collapse"
Implementation
String get borderCollapse => this._borderCollapse;
set borderCollapse(String? value) {
_borderCollapse = value == null ? '' : value;
}
borderColor read / write override#
getter:
Gets the value of "border-color"
setter:
Sets the value of "border-color"
Implementation
String get borderColor => this._borderColor;
set borderColor(String? value) {
_borderColor = value == null ? '' : value;
}
borderEnd read / write inherited#
getter:
Gets the value of "border-end"
setter:
Sets the value of "border-end"
Inherited from CssStyleDeclarationBase.
Implementation
String get borderEnd => getPropertyValue('border-end');
set borderEnd(String value) {
setProperty('border-end', value, '');
}
borderEndColor read / write inherited#
getter:
Gets the value of "border-end-color"
setter:
Sets the value of "border-end-color"
Inherited from CssStyleDeclarationBase.
Implementation
String get borderEndColor => getPropertyValue('border-end-color');
set borderEndColor(String value) {
setProperty('border-end-color', value, '');
}
borderEndStyle read / write inherited#
getter:
Gets the value of "border-end-style"
setter:
Sets the value of "border-end-style"
Inherited from CssStyleDeclarationBase.
Implementation
String get borderEndStyle => getPropertyValue('border-end-style');
set borderEndStyle(String value) {
setProperty('border-end-style', value, '');
}
borderEndWidth read / write inherited#
getter:
Gets the value of "border-end-width"
setter:
Sets the value of "border-end-width"
Inherited from CssStyleDeclarationBase.
Implementation
String get borderEndWidth => getPropertyValue('border-end-width');
set borderEndWidth(String value) {
setProperty('border-end-width', value, '');
}
borderFit read / write inherited#
getter:
Gets the value of "border-fit"
setter:
Sets the value of "border-fit"
Inherited from CssStyleDeclarationBase.
Implementation
String get borderFit => getPropertyValue('border-fit');
set borderFit(String value) {
setProperty('border-fit', value, '');
}
borderHorizontalSpacing read / write inherited#
getter:
Gets the value of "border-horizontal-spacing"
setter:
Sets the value of "border-horizontal-spacing"
Inherited from CssStyleDeclarationBase.
Implementation
String get borderHorizontalSpacing =>
getPropertyValue('border-horizontal-spacing');
set borderHorizontalSpacing(String value) {
setProperty('border-horizontal-spacing', value, '');
}
borderImage read / write inherited#
getter:
Gets the value of "border-image"
setter:
Sets the value of "border-image"
Inherited from CssStyleDeclarationBase.
Implementation
String get borderImage => getPropertyValue('border-image');
set borderImage(String value) {
setProperty('border-image', value, '');
}
borderImageOutset read / write inherited#
getter:
Gets the value of "border-image-outset"
setter:
Sets the value of "border-image-outset"
Inherited from CssStyleDeclarationBase.
Implementation
String get borderImageOutset => getPropertyValue('border-image-outset');
set borderImageOutset(String value) {
setProperty('border-image-outset', value, '');
}
borderImageRepeat read / write inherited#
getter:
Gets the value of "border-image-repeat"
setter:
Sets the value of "border-image-repeat"
Inherited from CssStyleDeclarationBase.
Implementation
String get borderImageRepeat => getPropertyValue('border-image-repeat');
set borderImageRepeat(String value) {
setProperty('border-image-repeat', value, '');
}
borderImageSlice read / write inherited#
getter:
Gets the value of "border-image-slice"
setter:
Sets the value of "border-image-slice"
Inherited from CssStyleDeclarationBase.
Implementation
String get borderImageSlice => getPropertyValue('border-image-slice');
set borderImageSlice(String value) {
setProperty('border-image-slice', value, '');
}
borderImageSource read / write inherited#
getter:
Gets the value of "border-image-source"
setter:
Sets the value of "border-image-source"
Inherited from CssStyleDeclarationBase.
Implementation
String get borderImageSource => getPropertyValue('border-image-source');
set borderImageSource(String value) {
setProperty('border-image-source', value, '');
}
borderImageWidth read / write inherited#
getter:
Gets the value of "border-image-width"
setter:
Sets the value of "border-image-width"
Inherited from CssStyleDeclarationBase.
Implementation
String get borderImageWidth => getPropertyValue('border-image-width');
set borderImageWidth(String value) {
setProperty('border-image-width', value, '');
}
borderLeft read / write override#
getter:
Gets the value of "border-left"
setter:
Sets the value of "border-left"
Implementation
String get borderLeft => this._borderLeft;
set borderLeft(String? value) {
_borderLeft = value == null ? '' : value;
}
borderLeftColor read / write override#
getter:
Gets the value of "border-left-color"
setter:
Sets the value of "border-left-color"
Implementation
String get borderLeftColor => this._borderLeftColor;
set borderLeftColor(String? value) {
_borderLeftColor = value == null ? '' : value;
}
borderLeftStyle read / write override#
getter:
Gets the value of "border-left-style"
setter:
Sets the value of "border-left-style"
Implementation
String get borderLeftStyle => this._borderLeftStyle;
set borderLeftStyle(String? value) {
_borderLeftStyle = value == null ? '' : value;
}
borderLeftWidth read / write override#
getter:
Gets the value of "border-left-width"
setter:
Sets the value of "border-left-width"
Implementation
String get borderLeftWidth => this._borderLeftWidth;
set borderLeftWidth(String? value) {
_borderLeftWidth = value == null ? '' : value;
}
borderRadius read / write inherited#
getter:
Gets the value of "border-radius"
setter:
Sets the value of "border-radius"
Inherited from CssStyleDeclarationBase.
Implementation
String get borderRadius => getPropertyValue('border-radius');
set borderRadius(String value) {
setProperty('border-radius', value, '');
}
borderRight read / write override#
getter:
Gets the value of "border-right"
setter:
Sets the value of "border-right"
Implementation
String get borderRight => this._borderRight;
set borderRight(String? value) {
_borderRight = value == null ? '' : value;
}
borderRightColor read / write override#
getter:
Gets the value of "border-right-color"
setter:
Sets the value of "border-right-color"
Implementation
String get borderRightColor => this._borderRightColor;
set borderRightColor(String? value) {
_borderRightColor = value == null ? '' : value;
}
borderRightStyle read / write override#
getter:
Gets the value of "border-right-style"
setter:
Sets the value of "border-right-style"
Implementation
String get borderRightStyle => this._borderRightStyle;
set borderRightStyle(String? value) {
_borderRightStyle = value == null ? '' : value;
}
borderRightWidth read / write override#
getter:
Gets the value of "border-right-width"
setter:
Sets the value of "border-right-width"
Implementation
String get borderRightWidth => this._borderRightWidth;
set borderRightWidth(String? value) {
_borderRightWidth = value == null ? '' : value;
}
borderSpacing read / write override#
getter:
Gets the value of "border-spacing"
setter:
Sets the value of "border-spacing"
Implementation
String get borderSpacing => this._borderSpacing;
set borderSpacing(String? value) {
_borderSpacing = value == null ? '' : value;
}
borderStart read / write inherited#
getter:
Gets the value of "border-start"
setter:
Sets the value of "border-start"
Inherited from CssStyleDeclarationBase.
Implementation
String get borderStart => getPropertyValue('border-start');
set borderStart(String value) {
setProperty('border-start', value, '');
}
borderStartColor read / write inherited#
getter:
Gets the value of "border-start-color"
setter:
Sets the value of "border-start-color"
Inherited from CssStyleDeclarationBase.
Implementation
String get borderStartColor => getPropertyValue('border-start-color');
set borderStartColor(String value) {
setProperty('border-start-color', value, '');
}
borderStartStyle read / write inherited#
getter:
Gets the value of "border-start-style"
setter:
Sets the value of "border-start-style"
Inherited from CssStyleDeclarationBase.
Implementation
String get borderStartStyle => getPropertyValue('border-start-style');
set borderStartStyle(String value) {
setProperty('border-start-style', value, '');
}
borderStartWidth read / write inherited#
getter:
Gets the value of "border-start-width"
setter:
Sets the value of "border-start-width"
Inherited from CssStyleDeclarationBase.
Implementation
String get borderStartWidth => getPropertyValue('border-start-width');
set borderStartWidth(String value) {
setProperty('border-start-width', value, '');
}
borderStyle read / write override#
getter:
Gets the value of "border-style"
setter:
Sets the value of "border-style"
Implementation
String get borderStyle => this._borderStyle;
set borderStyle(String? value) {
_borderStyle = value == null ? '' : value;
}
borderTop read / write override#
getter:
Gets the value of "border-top"
setter:
Sets the value of "border-top"
Implementation
String get borderTop => this._borderTop;
set borderTop(String? value) {
_borderTop = value == null ? '' : value;
}
borderTopColor read / write override#
getter:
Gets the value of "border-top-color"
setter:
Sets the value of "border-top-color"
Implementation
String get borderTopColor => this._borderTopColor;
set borderTopColor(String? value) {
_borderTopColor = value == null ? '' : value;
}
borderTopLeftRadius read / write inherited#
getter:
Gets the value of "border-top-left-radius"
setter:
Sets the value of "border-top-left-radius"
Inherited from CssStyleDeclarationBase.
Implementation
String get borderTopLeftRadius => getPropertyValue('border-top-left-radius');
set borderTopLeftRadius(String value) {
setProperty('border-top-left-radius', value, '');
}
borderTopRightRadius read / write inherited#
getter:
Gets the value of "border-top-right-radius"
setter:
Sets the value of "border-top-right-radius"
Inherited from CssStyleDeclarationBase.
Implementation
String get borderTopRightRadius =>
getPropertyValue('border-top-right-radius');
set borderTopRightRadius(String value) {
setProperty('border-top-right-radius', value, '');
}
borderTopStyle read / write override#
getter:
Gets the value of "border-top-style"
setter:
Sets the value of "border-top-style"
Implementation
String get borderTopStyle => this._borderTopStyle;
set borderTopStyle(String? value) {
_borderTopStyle = value == null ? '' : value;
}
borderTopWidth read / write override#
getter:
Gets the value of "border-top-width"
setter:
Sets the value of "border-top-width"
Implementation
String get borderTopWidth => this._borderTopWidth;
set borderTopWidth(String? value) {
_borderTopWidth = value == null ? '' : value;
}
borderVerticalSpacing read / write inherited#
getter:
Gets the value of "border-vertical-spacing"
setter:
Sets the value of "border-vertical-spacing"
Inherited from CssStyleDeclarationBase.
Implementation
String get borderVerticalSpacing =>
getPropertyValue('border-vertical-spacing');
set borderVerticalSpacing(String value) {
setProperty('border-vertical-spacing', value, '');
}
borderWidth read / write override#
getter:
Gets the value of "border-width"
setter:
Sets the value of "border-width"
Implementation
String get borderWidth => this._borderWidth;
set borderWidth(String? value) {
_borderWidth = value == null ? '' : value;
}
bottom read / write override#
getter:
Gets the value of "bottom"
setter:
Sets the value of "bottom"
Implementation
String get bottom => this._bottom;
set bottom(String? value) {
_bottom = value == null ? '' : value;
}
boxAlign read / write inherited#
getter:
Gets the value of "box-align"
setter:
Sets the value of "box-align"
Inherited from CssStyleDeclarationBase.
Implementation
String get boxAlign => getPropertyValue('box-align');
set boxAlign(String value) {
setProperty('box-align', value, '');
}
boxDecorationBreak read / write inherited#
getter:
Gets the value of "box-decoration-break"
setter:
Sets the value of "box-decoration-break"
Inherited from CssStyleDeclarationBase.
Implementation
String get boxDecorationBreak => getPropertyValue('box-decoration-break');
set boxDecorationBreak(String value) {
setProperty('box-decoration-break', value, '');
}
boxDirection read / write inherited#
getter:
Gets the value of "box-direction"
setter:
Sets the value of "box-direction"
Inherited from CssStyleDeclarationBase.
Implementation
String get boxDirection => getPropertyValue('box-direction');
set boxDirection(String value) {
setProperty('box-direction', value, '');
}
boxFlex read / write inherited#
getter:
Gets the value of "box-flex"
setter:
Sets the value of "box-flex"
Inherited from CssStyleDeclarationBase.
Implementation
String get boxFlex => getPropertyValue('box-flex');
set boxFlex(String value) {
setProperty('box-flex', value, '');
}
boxFlexGroup read / write inherited#
getter:
Gets the value of "box-flex-group"
setter:
Sets the value of "box-flex-group"
Inherited from CssStyleDeclarationBase.
Implementation
String get boxFlexGroup => getPropertyValue('box-flex-group');
set boxFlexGroup(String value) {
setProperty('box-flex-group', value, '');
}
boxLines read / write inherited#
getter:
Gets the value of "box-lines"
setter:
Sets the value of "box-lines"
Inherited from CssStyleDeclarationBase.
Implementation
String get boxLines => getPropertyValue('box-lines');
set boxLines(String value) {
setProperty('box-lines', value, '');
}
boxOrdinalGroup read / write inherited#
getter:
Gets the value of "box-ordinal-group"
setter:
Sets the value of "box-ordinal-group"
Inherited from CssStyleDeclarationBase.
Implementation
String get boxOrdinalGroup => getPropertyValue('box-ordinal-group');
set boxOrdinalGroup(String value) {
setProperty('box-ordinal-group', value, '');
}
boxOrient read / write inherited#
getter:
Gets the value of "box-orient"
setter:
Sets the value of "box-orient"
Inherited from CssStyleDeclarationBase.
Implementation
String get boxOrient => getPropertyValue('box-orient');
set boxOrient(String value) {
setProperty('box-orient', value, '');
}
boxPack read / write inherited#
getter:
Gets the value of "box-pack"
setter:
Sets the value of "box-pack"
Inherited from CssStyleDeclarationBase.
Implementation
String get boxPack => getPropertyValue('box-pack');
set boxPack(String value) {
setProperty('box-pack', value, '');
}
boxReflect read / write inherited#
getter:
Gets the value of "box-reflect"
setter:
Sets the value of "box-reflect"
Inherited from CssStyleDeclarationBase.
Implementation
String get boxReflect => getPropertyValue('box-reflect');
set boxReflect(String value) {
setProperty('box-reflect', value, '');
}
boxShadow read / write inherited#
getter:
Gets the value of "box-shadow"
setter:
Sets the value of "box-shadow"
Inherited from CssStyleDeclarationBase.
Implementation
String get boxShadow => getPropertyValue('box-shadow');
set boxShadow(String value) {
setProperty('box-shadow', value, '');
}
boxSizing read / write inherited#
getter:
Gets the value of "box-sizing"
setter:
Sets the value of "box-sizing"
Inherited from CssStyleDeclarationBase.
Implementation
String get boxSizing => getPropertyValue('box-sizing');
set boxSizing(String value) {
setProperty('box-sizing', value, '');
}
captionSide read / write override#
getter:
Gets the value of "caption-side"
setter:
Sets the value of "caption-side"
Implementation
String get captionSide => this._captionSide;
set captionSide(String? value) {
_captionSide = value == null ? '' : value;
}
clear read / write override#
getter:
Gets the value of "clear"
setter:
Sets the value of "clear"
Implementation
String get clear => this._clear;
set clear(String? value) {
_clear = value == null ? '' : value;
}
clip read / write override#
getter:
Gets the value of "clip"
setter:
Sets the value of "clip"
Implementation
String get clip => this._clip;
set clip(String? value) {
_clip = value == null ? '' : value;
}
clipPath read / write inherited#
getter:
Gets the value of "clip-path"
setter:
Sets the value of "clip-path"
Inherited from CssStyleDeclarationBase.
Implementation
String get clipPath => getPropertyValue('clip-path');
set clipPath(String value) {
setProperty('clip-path', value, '');
}
color read / write override#
getter:
Gets the value of "color"
setter:
Sets the value of "color"
Implementation
String get color => this._color;
set color(String? value) {
_color = value == null ? '' : value;
}
columnBreakAfter read / write inherited#
getter:
Gets the value of "column-break-after"
setter:
Sets the value of "column-break-after"
Inherited from CssStyleDeclarationBase.
Implementation
String get columnBreakAfter => getPropertyValue('column-break-after');
set columnBreakAfter(String value) {
setProperty('column-break-after', value, '');
}
columnBreakBefore read / write inherited#
getter:
Gets the value of "column-break-before"
setter:
Sets the value of "column-break-before"
Inherited from CssStyleDeclarationBase.
Implementation
String get columnBreakBefore => getPropertyValue('column-break-before');
set columnBreakBefore(String value) {
setProperty('column-break-before', value, '');
}
columnBreakInside read / write inherited#
getter:
Gets the value of "column-break-inside"
setter:
Sets the value of "column-break-inside"
Inherited from CssStyleDeclarationBase.
Implementation
String get columnBreakInside => getPropertyValue('column-break-inside');
set columnBreakInside(String value) {
setProperty('column-break-inside', value, '');
}
columnCount read / write inherited#
getter:
Gets the value of "column-count"
setter:
Sets the value of "column-count"
Inherited from CssStyleDeclarationBase.
Implementation
String get columnCount => getPropertyValue('column-count');
set columnCount(String value) {
setProperty('column-count', value, '');
}
columnFill read / write inherited#
getter:
Gets the value of "column-fill"
setter:
Sets the value of "column-fill"
Inherited from CssStyleDeclarationBase.
Implementation
String get columnFill => getPropertyValue('column-fill');
set columnFill(String value) {
setProperty('column-fill', value, '');
}
columnGap read / write inherited#
getter:
Gets the value of "column-gap"
setter:
Sets the value of "column-gap"
Inherited from CssStyleDeclarationBase.
Implementation
String get columnGap => getPropertyValue('column-gap');
set columnGap(String value) {
setProperty('column-gap', value, '');
}
columnRule read / write inherited#
getter:
Gets the value of "column-rule"
setter:
Sets the value of "column-rule"
Inherited from CssStyleDeclarationBase.
Implementation
String get columnRule => getPropertyValue('column-rule');
set columnRule(String value) {
setProperty('column-rule', value, '');
}
columnRuleColor read / write inherited#
getter:
Gets the value of "column-rule-color"
setter:
Sets the value of "column-rule-color"
Inherited from CssStyleDeclarationBase.
Implementation
String get columnRuleColor => getPropertyValue('column-rule-color');
set columnRuleColor(String value) {
setProperty('column-rule-color', value, '');
}
columnRuleStyle read / write inherited#
getter:
Gets the value of "column-rule-style"
setter:
Sets the value of "column-rule-style"
Inherited from CssStyleDeclarationBase.
Implementation
String get columnRuleStyle => getPropertyValue('column-rule-style');
set columnRuleStyle(String value) {
setProperty('column-rule-style', value, '');
}
columnRuleWidth read / write inherited#
getter:
Gets the value of "column-rule-width"
setter:
Sets the value of "column-rule-width"
Inherited from CssStyleDeclarationBase.
Implementation
String get columnRuleWidth => getPropertyValue('column-rule-width');
set columnRuleWidth(String value) {
setProperty('column-rule-width', value, '');
}
columns read / write inherited#
getter:
Gets the value of "columns"
setter:
Sets the value of "columns"
Inherited from CssStyleDeclarationBase.
Implementation
String get columns => getPropertyValue('columns');
set columns(String value) {
setProperty('columns', value, '');
}
columnSpan read / write inherited#
getter:
Gets the value of "column-span"
setter:
Sets the value of "column-span"
Inherited from CssStyleDeclarationBase.
Implementation
String get columnSpan => getPropertyValue('column-span');
set columnSpan(String value) {
setProperty('column-span', value, '');
}
columnWidth read / write inherited#
getter:
Gets the value of "column-width"
setter:
Sets the value of "column-width"
Inherited from CssStyleDeclarationBase.
Implementation
String get columnWidth => getPropertyValue('column-width');
set columnWidth(String value) {
setProperty('column-width', value, '');
}
content read / write override#
getter:
Gets the value of "content"
setter:
Sets the value of "content"
Implementation
String get content => this._content;
set content(String? value) {
_content = value == null ? '' : value;
}
counterIncrement read / write inherited#
getter:
Gets the value of "counter-increment"
setter:
Sets the value of "counter-increment"
Inherited from CssStyleDeclarationBase.
Implementation
String get counterIncrement => getPropertyValue('counter-increment');
set counterIncrement(String value) {
setProperty('counter-increment', value, '');
}
counterReset read / write inherited#
getter:
Gets the value of "counter-reset"
setter:
Sets the value of "counter-reset"
Inherited from CssStyleDeclarationBase.
Implementation
String get counterReset => getPropertyValue('counter-reset');
set counterReset(String value) {
setProperty('counter-reset', value, '');
}
cssFloat read / write#
Implementation
String? get cssFloat native;
set cssFloat(String? value) native;
cssText read / write#
Implementation
String? get cssText native;
set cssText(String? value) native;
cursor read / write override#
getter:
Gets the value of "cursor"
setter:
Sets the value of "cursor"
Implementation
String get cursor => this._cursor;
set cursor(String? value) {
_cursor = value == null ? '' : value;
}
direction read / write override#
getter:
Gets the value of "direction"
setter:
Sets the value of "direction"
Implementation
String get direction => this._direction;
set direction(String? value) {
_direction = value == null ? '' : value;
}
display read / write override#
getter:
Gets the value of "display"
setter:
Sets the value of "display"
Implementation
String get display => this._display;
set display(String? value) {
_display = value == null ? '' : value;
}
emptyCells read / write override#
getter:
Gets the value of "empty-cells"
setter:
Sets the value of "empty-cells"
Implementation
String get emptyCells => this._emptyCells;
set emptyCells(String? value) {
_emptyCells = value == null ? '' : value;
}
filter read / write inherited#
getter:
Gets the value of "filter"
setter:
Sets the value of "filter"
Inherited from CssStyleDeclarationBase.
Implementation
String get filter => getPropertyValue('filter');
set filter(String value) {
setProperty('filter', value, '');
}
flex read / write inherited#
getter:
Gets the value of "flex"
setter:
Sets the value of "flex"
Inherited from CssStyleDeclarationBase.
Implementation
String get flex => getPropertyValue('flex');
set flex(String value) {
setProperty('flex', value, '');
}
flexBasis read / write inherited#
getter:
Gets the value of "flex-basis"
setter:
Sets the value of "flex-basis"
Inherited from CssStyleDeclarationBase.
Implementation
String get flexBasis => getPropertyValue('flex-basis');
set flexBasis(String value) {
setProperty('flex-basis', value, '');
}
flexDirection read / write inherited#
getter:
Gets the value of "flex-direction"
setter:
Sets the value of "flex-direction"
Inherited from CssStyleDeclarationBase.
Implementation
String get flexDirection => getPropertyValue('flex-direction');
set flexDirection(String value) {
setProperty('flex-direction', value, '');
}
flexFlow read / write inherited#
getter:
Gets the value of "flex-flow"
setter:
Sets the value of "flex-flow"
Inherited from CssStyleDeclarationBase.
Implementation
String get flexFlow => getPropertyValue('flex-flow');
set flexFlow(String value) {
setProperty('flex-flow', value, '');
}
flexGrow read / write inherited#
getter:
Gets the value of "flex-grow"
setter:
Sets the value of "flex-grow"
Inherited from CssStyleDeclarationBase.
Implementation
String get flexGrow => getPropertyValue('flex-grow');
set flexGrow(String value) {
setProperty('flex-grow', value, '');
}
flexShrink read / write inherited#
getter:
Gets the value of "flex-shrink"
setter:
Sets the value of "flex-shrink"
Inherited from CssStyleDeclarationBase.
Implementation
String get flexShrink => getPropertyValue('flex-shrink');
set flexShrink(String value) {
setProperty('flex-shrink', value, '');
}
flexWrap read / write inherited#
getter:
Gets the value of "flex-wrap"
setter:
Sets the value of "flex-wrap"
Inherited from CssStyleDeclarationBase.
Implementation
String get flexWrap => getPropertyValue('flex-wrap');
set flexWrap(String value) {
setProperty('flex-wrap', value, '');
}
float read / write inherited#
getter:
Gets the value of "float"
setter:
Sets the value of "float"
Inherited from CssStyleDeclarationBase.
Implementation
String get float => getPropertyValue('float');
set float(String value) {
setProperty('float', value, '');
}
font read / write override#
getter:
Gets the value of "font"
setter:
Sets the value of "font"
Implementation
String get font => this._font;
set font(String? value) {
_font = value == null ? '' : value;
}
fontFamily read / write override#
getter:
Gets the value of "font-family"
setter:
Sets the value of "font-family"
Implementation
String get fontFamily => this._fontFamily;
set fontFamily(String? value) {
_fontFamily = value == null ? '' : value;
}
fontFeatureSettings read / write inherited#
getter:
Gets the value of "font-feature-settings"
setter:
Sets the value of "font-feature-settings"
Inherited from CssStyleDeclarationBase.
Implementation
String get fontFeatureSettings => getPropertyValue('font-feature-settings');
set fontFeatureSettings(String value) {
setProperty('font-feature-settings', value, '');
}
fontKerning read / write inherited#
getter:
Gets the value of "font-kerning"
setter:
Sets the value of "font-kerning"
Inherited from CssStyleDeclarationBase.
Implementation
String get fontKerning => getPropertyValue('font-kerning');
set fontKerning(String value) {
setProperty('font-kerning', value, '');
}
fontSize read / write override#
getter:
Gets the value of "font-size"
setter:
Sets the value of "font-size"
Implementation
String get fontSize => this._fontSize;
set fontSize(String? value) {
_fontSize = value == null ? '' : value;
}
fontSizeDelta read / write inherited#
getter:
Gets the value of "font-size-delta"
setter:
Sets the value of "font-size-delta"
Inherited from CssStyleDeclarationBase.
Implementation
String get fontSizeDelta => getPropertyValue('font-size-delta');
set fontSizeDelta(String value) {
setProperty('font-size-delta', value, '');
}
fontSmoothing read / write inherited#
getter:
Gets the value of "font-smoothing"
setter:
Sets the value of "font-smoothing"
Inherited from CssStyleDeclarationBase.
Implementation
String get fontSmoothing => getPropertyValue('font-smoothing');
set fontSmoothing(String value) {
setProperty('font-smoothing', value, '');
}
fontStretch read / write inherited#
getter:
Gets the value of "font-stretch"
setter:
Sets the value of "font-stretch"
Inherited from CssStyleDeclarationBase.
Implementation
String get fontStretch => getPropertyValue('font-stretch');
set fontStretch(String value) {
setProperty('font-stretch', value, '');
}
fontStyle read / write override#
getter:
Gets the value of "font-style"
setter:
Sets the value of "font-style"
Implementation
String get fontStyle => this._fontStyle;
set fontStyle(String? value) {
_fontStyle = value == null ? '' : value;
}
fontVariant read / write override#
getter:
Gets the value of "font-variant"
setter:
Sets the value of "font-variant"
Implementation
String get fontVariant => this._fontVariant;
set fontVariant(String? value) {
_fontVariant = value == null ? '' : value;
}
fontVariantLigatures read / write inherited#
getter:
Gets the value of "font-variant-ligatures"
setter:
Sets the value of "font-variant-ligatures"
Inherited from CssStyleDeclarationBase.
Implementation
String get fontVariantLigatures => getPropertyValue('font-variant-ligatures');
set fontVariantLigatures(String value) {
setProperty('font-variant-ligatures', value, '');
}
fontWeight read / write override#
getter:
Gets the value of "font-weight"
setter:
Sets the value of "font-weight"
Implementation
String get fontWeight => this._fontWeight;
set fontWeight(String? value) {
_fontWeight = value == null ? '' : value;
}
gap read / write inherited#
getter:
Gets the value of "gap"
setter:
Sets the value of "gap"
Inherited from CssStyleDeclarationBase.
Implementation
String get gap => getPropertyValue('gap');
set gap(String value) {
setProperty('gap', value, '');
}
grid read / write inherited#
getter:
Gets the value of "grid"
setter:
Sets the value of "grid"
Inherited from CssStyleDeclarationBase.
Implementation
String get grid => getPropertyValue('grid');
set grid(String value) {
setProperty('grid', value, '');
}
gridArea read / write inherited#
getter:
Gets the value of "grid-area"
setter:
Sets the value of "grid-area"
Inherited from CssStyleDeclarationBase.
Implementation
String get gridArea => getPropertyValue('grid-area');
set gridArea(String value) {
setProperty('grid-area', value, '');
}
gridAutoColumns read / write inherited#
getter:
Gets the value of "grid-auto-columns"
setter:
Sets the value of "grid-auto-columns"
Inherited from CssStyleDeclarationBase.
Implementation
String get gridAutoColumns => getPropertyValue('grid-auto-columns');
set gridAutoColumns(String value) {
setProperty('grid-auto-columns', value, '');
}
gridAutoFlow read / write inherited#
getter:
Gets the value of "grid-auto-flow"
setter:
Sets the value of "grid-auto-flow"
Inherited from CssStyleDeclarationBase.
Implementation
String get gridAutoFlow => getPropertyValue('grid-auto-flow');
set gridAutoFlow(String value) {
setProperty('grid-auto-flow', value, '');
}
gridAutoRows read / write inherited#
getter:
Gets the value of "grid-auto-rows"
setter:
Sets the value of "grid-auto-rows"
Inherited from CssStyleDeclarationBase.
Implementation
String get gridAutoRows => getPropertyValue('grid-auto-rows');
set gridAutoRows(String value) {
setProperty('grid-auto-rows', value, '');
}
gridColumn read / write inherited#
getter:
Gets the value of "grid-column"
setter:
Sets the value of "grid-column"
Inherited from CssStyleDeclarationBase.
Implementation
String get gridColumn => getPropertyValue('grid-column');
set gridColumn(String value) {
setProperty('grid-column', value, '');
}
gridColumnEnd read / write inherited#
getter:
Gets the value of "grid-column-end"
setter:
Sets the value of "grid-column-end"
Inherited from CssStyleDeclarationBase.
Implementation
String get gridColumnEnd => getPropertyValue('grid-column-end');
set gridColumnEnd(String value) {
setProperty('grid-column-end', value, '');
}
gridColumnStart read / write inherited#
getter:
Gets the value of "grid-column-start"
setter:
Sets the value of "grid-column-start"
Inherited from CssStyleDeclarationBase.
Implementation
String get gridColumnStart => getPropertyValue('grid-column-start');
set gridColumnStart(String value) {
setProperty('grid-column-start', value, '');
}
gridRow read / write inherited#
getter:
Gets the value of "grid-row"
setter:
Sets the value of "grid-row"
Inherited from CssStyleDeclarationBase.
Implementation
String get gridRow => getPropertyValue('grid-row');
set gridRow(String value) {
setProperty('grid-row', value, '');
}
gridRowEnd read / write inherited#
getter:
Gets the value of "grid-row-end"
setter:
Sets the value of "grid-row-end"
Inherited from CssStyleDeclarationBase.
Implementation
String get gridRowEnd => getPropertyValue('grid-row-end');
set gridRowEnd(String value) {
setProperty('grid-row-end', value, '');
}
gridRowStart read / write inherited#
getter:
Gets the value of "grid-row-start"
setter:
Sets the value of "grid-row-start"
Inherited from CssStyleDeclarationBase.
Implementation
String get gridRowStart => getPropertyValue('grid-row-start');
set gridRowStart(String value) {
setProperty('grid-row-start', value, '');
}
gridTemplate read / write inherited#
getter:
Gets the value of "grid-template"
setter:
Sets the value of "grid-template"
Inherited from CssStyleDeclarationBase.
Implementation
String get gridTemplate => getPropertyValue('grid-template');
set gridTemplate(String value) {
setProperty('grid-template', value, '');
}
gridTemplateAreas read / write inherited#
getter:
Gets the value of "grid-template-areas"
setter:
Sets the value of "grid-template-areas"
Inherited from CssStyleDeclarationBase.
Implementation
String get gridTemplateAreas => getPropertyValue('grid-template-areas');
set gridTemplateAreas(String value) {
setProperty('grid-template-areas', value, '');
}
gridTemplateColumns read / write inherited#
getter:
Gets the value of "grid-template-columns"
setter:
Sets the value of "grid-template-columns"
Inherited from CssStyleDeclarationBase.
Implementation
String get gridTemplateColumns => getPropertyValue('grid-template-columns');
set gridTemplateColumns(String value) {
setProperty('grid-template-columns', value, '');
}
gridTemplateRows read / write inherited#
getter:
Gets the value of "grid-template-rows"
setter:
Sets the value of "grid-template-rows"
Inherited from CssStyleDeclarationBase.
Implementation
String get gridTemplateRows => getPropertyValue('grid-template-rows');
set gridTemplateRows(String value) {
setProperty('grid-template-rows', value, '');
}
hashCode no setter inherited#
Inherited from Interceptor.
Implementation
int get hashCode => Primitives.objectHashCode(this);
height read / write override#
getter:
Gets the value of "height"
setter:
Sets the value of "height"
Implementation
String get height => this._height;
set height(String? value) {
_height = value == null ? '' : value;
}
highlight read / write inherited#
getter:
Gets the value of "highlight"
setter:
Sets the value of "highlight"
Inherited from CssStyleDeclarationBase.
Implementation
String get highlight => getPropertyValue('highlight');
set highlight(String value) {
setProperty('highlight', value, '');
}
hyphenateCharacter read / write inherited#
getter:
Gets the value of "hyphenate-character"
setter:
Sets the value of "hyphenate-character"
Inherited from CssStyleDeclarationBase.
Implementation
String get hyphenateCharacter => getPropertyValue('hyphenate-character');
set hyphenateCharacter(String value) {
setProperty('hyphenate-character', value, '');
}
imageRendering read / write inherited#
getter:
Gets the value of "image-rendering"
setter:
Sets the value of "image-rendering"
Inherited from CssStyleDeclarationBase.
Implementation
String get imageRendering => getPropertyValue('image-rendering');
set imageRendering(String value) {
setProperty('image-rendering', value, '');
}
isolation read / write inherited#
getter:
Gets the value of "isolation"
setter:
Sets the value of "isolation"
Inherited from CssStyleDeclarationBase.
Implementation
String get isolation => getPropertyValue('isolation');
set isolation(String value) {
setProperty('isolation', value, '');
}
justifyContent read / write inherited#
getter:
Gets the value of "justify-content"
setter:
Sets the value of "justify-content"
Inherited from CssStyleDeclarationBase.
Implementation
String get justifyContent => getPropertyValue('justify-content');
set justifyContent(String value) {
setProperty('justify-content', value, '');
}
justifySelf read / write inherited#
getter:
Gets the value of "justify-self"
setter:
Sets the value of "justify-self"
Inherited from CssStyleDeclarationBase.
Implementation
String get justifySelf => getPropertyValue('justify-self');
set justifySelf(String value) {
setProperty('justify-self', value, '');
}
left read / write override#
getter:
Gets the value of "left"
setter:
Sets the value of "left"
Implementation
String get left => this._left;
set left(String? value) {
_left = value == null ? '' : value;
}
length no setter#
Implementation
int get length native;
letterSpacing read / write override#
getter:
Gets the value of "letter-spacing"
setter:
Sets the value of "letter-spacing"
Implementation
String get letterSpacing => this._letterSpacing;
set letterSpacing(String? value) {
_letterSpacing = value == null ? '' : value;
}
lineBoxContain read / write inherited#
getter:
Gets the value of "line-box-contain"
setter:
Sets the value of "line-box-contain"
Inherited from CssStyleDeclarationBase.
Implementation
String get lineBoxContain => getPropertyValue('line-box-contain');
set lineBoxContain(String value) {
setProperty('line-box-contain', value, '');
}
lineBreak read / write inherited#
getter:
Gets the value of "line-break"
setter:
Sets the value of "line-break"
Inherited from CssStyleDeclarationBase.
Implementation
String get lineBreak => getPropertyValue('line-break');
set lineBreak(String value) {
setProperty('line-break', value, '');
}
lineClamp read / write inherited#
getter:
Gets the value of "line-clamp"
setter:
Sets the value of "line-clamp"
Inherited from CssStyleDeclarationBase.
Implementation
String get lineClamp => getPropertyValue('line-clamp');
set lineClamp(String value) {
setProperty('line-clamp', value, '');
}
lineHeight read / write override#
getter:
Gets the value of "line-height"
setter:
Sets the value of "line-height"
Implementation
String get lineHeight => this._lineHeight;
set lineHeight(String? value) {
_lineHeight = value == null ? '' : value;
}
listStyle read / write override#
getter:
Gets the value of "list-style"
setter:
Sets the value of "list-style"
Implementation
String get listStyle => this._listStyle;
set listStyle(String? value) {
_listStyle = value == null ? '' : value;
}
listStyleImage read / write override#
getter:
Gets the value of "list-style-image"
setter:
Sets the value of "list-style-image"
Implementation
String get listStyleImage => this._listStyleImage;
set listStyleImage(String? value) {
_listStyleImage = value == null ? '' : value;
}
listStylePosition read / write override#
getter:
Gets the value of "list-style-position"
setter:
Sets the value of "list-style-position"
Implementation
String get listStylePosition => this._listStylePosition;
set listStylePosition(String? value) {
_listStylePosition = value == null ? '' : value;
}
listStyleType read / write override#
getter:
Gets the value of "list-style-type"
setter:
Sets the value of "list-style-type"
Implementation
String get listStyleType => this._listStyleType;
set listStyleType(String? value) {
_listStyleType = value == null ? '' : value;
}
locale read / write inherited#
getter:
Gets the value of "locale"
setter:
Sets the value of "locale"
Inherited from CssStyleDeclarationBase.
Implementation
String get locale => getPropertyValue('locale');
set locale(String value) {
setProperty('locale', value, '');
}
logicalHeight read / write inherited#
getter:
Gets the value of "logical-height"
setter:
Sets the value of "logical-height"
Inherited from CssStyleDeclarationBase.
Implementation
String get logicalHeight => getPropertyValue('logical-height');
set logicalHeight(String value) {
setProperty('logical-height', value, '');
}
logicalWidth read / write inherited#
getter:
Gets the value of "logical-width"
setter:
Sets the value of "logical-width"
Inherited from CssStyleDeclarationBase.
Implementation
String get logicalWidth => getPropertyValue('logical-width');
set logicalWidth(String value) {
setProperty('logical-width', value, '');
}
margin read / write override#
getter:
Gets the value of "margin"
setter:
Sets the value of "margin"
Implementation
String get margin => this._margin;
set margin(String? value) {
_margin = value == null ? '' : value;
}
marginAfter read / write inherited#
getter:
Gets the value of "margin-after"
setter:
Sets the value of "margin-after"
Inherited from CssStyleDeclarationBase.
Implementation
String get marginAfter => getPropertyValue('margin-after');
set marginAfter(String value) {
setProperty('margin-after', value, '');
}
marginAfterCollapse read / write inherited#
getter:
Gets the value of "margin-after-collapse"
setter:
Sets the value of "margin-after-collapse"
Inherited from CssStyleDeclarationBase.
Implementation
String get marginAfterCollapse => getPropertyValue('margin-after-collapse');
set marginAfterCollapse(String value) {
setProperty('margin-after-collapse', value, '');
}
marginBefore read / write inherited#
getter:
Gets the value of "margin-before"
setter:
Sets the value of "margin-before"
Inherited from CssStyleDeclarationBase.
Implementation
String get marginBefore => getPropertyValue('margin-before');
set marginBefore(String value) {
setProperty('margin-before', value, '');
}
marginBeforeCollapse read / write inherited#
getter:
Gets the value of "margin-before-collapse"
setter:
Sets the value of "margin-before-collapse"
Inherited from CssStyleDeclarationBase.
Implementation
String get marginBeforeCollapse => getPropertyValue('margin-before-collapse');
set marginBeforeCollapse(String value) {
setProperty('margin-before-collapse', value, '');
}
marginBottom read / write override#
getter:
Gets the value of "margin-bottom"
setter:
Sets the value of "margin-bottom"
Implementation
String get marginBottom => this._marginBottom;
set marginBottom(String? value) {
_marginBottom = value == null ? '' : value;
}
marginBottomCollapse read / write inherited#
getter:
Gets the value of "margin-bottom-collapse"
setter:
Sets the value of "margin-bottom-collapse"
Inherited from CssStyleDeclarationBase.
Implementation
String get marginBottomCollapse => getPropertyValue('margin-bottom-collapse');
set marginBottomCollapse(String value) {
setProperty('margin-bottom-collapse', value, '');
}
marginCollapse read / write inherited#
getter:
Gets the value of "margin-collapse"
setter:
Sets the value of "margin-collapse"
Inherited from CssStyleDeclarationBase.
Implementation
String get marginCollapse => getPropertyValue('margin-collapse');
set marginCollapse(String value) {
setProperty('margin-collapse', value, '');
}
marginEnd read / write inherited#
getter:
Gets the value of "margin-end"
setter:
Sets the value of "margin-end"
Inherited from CssStyleDeclarationBase.
Implementation
String get marginEnd => getPropertyValue('margin-end');
set marginEnd(String value) {
setProperty('margin-end', value, '');
}
marginLeft read / write override#
getter:
Gets the value of "margin-left"
setter:
Sets the value of "margin-left"
Implementation
String get marginLeft => this._marginLeft;
set marginLeft(String? value) {
_marginLeft = value == null ? '' : value;
}
marginRight read / write override#
getter:
Gets the value of "margin-right"
setter:
Sets the value of "margin-right"
Implementation
String get marginRight => this._marginRight;
set marginRight(String? value) {
_marginRight = value == null ? '' : value;
}
marginStart read / write inherited#
getter:
Gets the value of "margin-start"
setter:
Sets the value of "margin-start"
Inherited from CssStyleDeclarationBase.
Implementation
String get marginStart => getPropertyValue('margin-start');
set marginStart(String value) {
setProperty('margin-start', value, '');
}
marginTop read / write override#
getter:
Gets the value of "margin-top"
setter:
Sets the value of "margin-top"
Implementation
String get marginTop => this._marginTop;
set marginTop(String? value) {
_marginTop = value == null ? '' : value;
}
marginTopCollapse read / write inherited#
getter:
Gets the value of "margin-top-collapse"
setter:
Sets the value of "margin-top-collapse"
Inherited from CssStyleDeclarationBase.
Implementation
String get marginTopCollapse => getPropertyValue('margin-top-collapse');
set marginTopCollapse(String value) {
setProperty('margin-top-collapse', value, '');
}
mask read / write inherited#
getter:
Gets the value of "mask"
setter:
Sets the value of "mask"
Inherited from CssStyleDeclarationBase.
Implementation
String get mask => getPropertyValue('mask');
set mask(String value) {
setProperty('mask', value, '');
}
maskBoxImage read / write inherited#
getter:
Gets the value of "mask-box-image"
setter:
Sets the value of "mask-box-image"
Inherited from CssStyleDeclarationBase.
Implementation
String get maskBoxImage => getPropertyValue('mask-box-image');
set maskBoxImage(String value) {
setProperty('mask-box-image', value, '');
}
maskBoxImageOutset read / write inherited#
getter:
Gets the value of "mask-box-image-outset"
setter:
Sets the value of "mask-box-image-outset"
Inherited from CssStyleDeclarationBase.
Implementation
String get maskBoxImageOutset => getPropertyValue('mask-box-image-outset');
set maskBoxImageOutset(String value) {
setProperty('mask-box-image-outset', value, '');
}
maskBoxImageRepeat read / write inherited#
getter:
Gets the value of "mask-box-image-repeat"
setter:
Sets the value of "mask-box-image-repeat"
Inherited from CssStyleDeclarationBase.
Implementation
String get maskBoxImageRepeat => getPropertyValue('mask-box-image-repeat');
set maskBoxImageRepeat(String value) {
setProperty('mask-box-image-repeat', value, '');
}
maskBoxImageSlice read / write inherited#
getter:
Gets the value of "mask-box-image-slice"
setter:
Sets the value of "mask-box-image-slice"
Inherited from CssStyleDeclarationBase.
Implementation
String get maskBoxImageSlice => getPropertyValue('mask-box-image-slice');
set maskBoxImageSlice(String value) {
setProperty('mask-box-image-slice', value, '');
}
maskBoxImageSource read / write inherited#
getter:
Gets the value of "mask-box-image-source"
setter:
Sets the value of "mask-box-image-source"
Inherited from CssStyleDeclarationBase.
Implementation
String get maskBoxImageSource => getPropertyValue('mask-box-image-source');
set maskBoxImageSource(String value) {
setProperty('mask-box-image-source', value, '');
}
maskBoxImageWidth read / write inherited#
getter:
Gets the value of "mask-box-image-width"
setter:
Sets the value of "mask-box-image-width"
Inherited from CssStyleDeclarationBase.
Implementation
String get maskBoxImageWidth => getPropertyValue('mask-box-image-width');
set maskBoxImageWidth(String value) {
setProperty('mask-box-image-width', value, '');
}
maskClip read / write inherited#
getter:
Gets the value of "mask-clip"
setter:
Sets the value of "mask-clip"
Inherited from CssStyleDeclarationBase.
Implementation
String get maskClip => getPropertyValue('mask-clip');
set maskClip(String value) {
setProperty('mask-clip', value, '');
}
maskComposite read / write inherited#
getter:
Gets the value of "mask-composite"
setter:
Sets the value of "mask-composite"
Inherited from CssStyleDeclarationBase.
Implementation
String get maskComposite => getPropertyValue('mask-composite');
set maskComposite(String value) {
setProperty('mask-composite', value, '');
}
maskImage read / write inherited#
getter:
Gets the value of "mask-image"
setter:
Sets the value of "mask-image"
Inherited from CssStyleDeclarationBase.
Implementation
String get maskImage => getPropertyValue('mask-image');
set maskImage(String value) {
setProperty('mask-image', value, '');
}
maskOrigin read / write inherited#
getter:
Gets the value of "mask-origin"
setter:
Sets the value of "mask-origin"
Inherited from CssStyleDeclarationBase.
Implementation
String get maskOrigin => getPropertyValue('mask-origin');
set maskOrigin(String value) {
setProperty('mask-origin', value, '');
}
maskPosition read / write inherited#
getter:
Gets the value of "mask-position"
setter:
Sets the value of "mask-position"
Inherited from CssStyleDeclarationBase.
Implementation
String get maskPosition => getPropertyValue('mask-position');
set maskPosition(String value) {
setProperty('mask-position', value, '');
}
maskPositionX read / write inherited#
getter:
Gets the value of "mask-position-x"
setter:
Sets the value of "mask-position-x"
Inherited from CssStyleDeclarationBase.
Implementation
String get maskPositionX => getPropertyValue('mask-position-x');
set maskPositionX(String value) {
setProperty('mask-position-x', value, '');
}
maskPositionY read / write inherited#
getter:
Gets the value of "mask-position-y"
setter:
Sets the value of "mask-position-y"
Inherited from CssStyleDeclarationBase.
Implementation
String get maskPositionY => getPropertyValue('mask-position-y');
set maskPositionY(String value) {
setProperty('mask-position-y', value, '');
}
maskRepeat read / write inherited#
getter:
Gets the value of "mask-repeat"
setter:
Sets the value of "mask-repeat"
Inherited from CssStyleDeclarationBase.
Implementation
String get maskRepeat => getPropertyValue('mask-repeat');
set maskRepeat(String value) {
setProperty('mask-repeat', value, '');
}
maskRepeatX read / write inherited#
getter:
Gets the value of "mask-repeat-x"
setter:
Sets the value of "mask-repeat-x"
Inherited from CssStyleDeclarationBase.
Implementation
String get maskRepeatX => getPropertyValue('mask-repeat-x');
set maskRepeatX(String value) {
setProperty('mask-repeat-x', value, '');
}
maskRepeatY read / write inherited#
getter:
Gets the value of "mask-repeat-y"
setter:
Sets the value of "mask-repeat-y"
Inherited from CssStyleDeclarationBase.
Implementation
String get maskRepeatY => getPropertyValue('mask-repeat-y');
set maskRepeatY(String value) {
setProperty('mask-repeat-y', value, '');
}
maskSize read / write inherited#
getter:
Gets the value of "mask-size"
setter:
Sets the value of "mask-size"
Inherited from CssStyleDeclarationBase.
Implementation
String get maskSize => getPropertyValue('mask-size');
set maskSize(String value) {
setProperty('mask-size', value, '');
}
maskSourceType read / write inherited#
getter:
Gets the value of "mask-source-type"
setter:
Sets the value of "mask-source-type"
Inherited from CssStyleDeclarationBase.
Implementation
String get maskSourceType => getPropertyValue('mask-source-type');
set maskSourceType(String value) {
setProperty('mask-source-type', value, '');
}
maxHeight read / write override#
getter:
Gets the value of "max-height"
setter:
Sets the value of "max-height"
Implementation
String get maxHeight => this._maxHeight;
set maxHeight(String? value) {
_maxHeight = value == null ? '' : value;
}
maxLogicalHeight read / write inherited#
getter:
Gets the value of "max-logical-height"
setter:
Sets the value of "max-logical-height"
Inherited from CssStyleDeclarationBase.
Implementation
String get maxLogicalHeight => getPropertyValue('max-logical-height');
set maxLogicalHeight(String value) {
setProperty('max-logical-height', value, '');
}
maxLogicalWidth read / write inherited#
getter:
Gets the value of "max-logical-width"
setter:
Sets the value of "max-logical-width"
Inherited from CssStyleDeclarationBase.
Implementation
String get maxLogicalWidth => getPropertyValue('max-logical-width');
set maxLogicalWidth(String value) {
setProperty('max-logical-width', value, '');
}
maxWidth read / write override#
getter:
Gets the value of "max-width"
setter:
Sets the value of "max-width"
Implementation
String get maxWidth => this._maxWidth;
set maxWidth(String? value) {
_maxWidth = value == null ? '' : value;
}
maxZoom read / write inherited#
getter:
Gets the value of "max-zoom"
setter:
Sets the value of "max-zoom"
Inherited from CssStyleDeclarationBase.
Implementation
String get maxZoom => getPropertyValue('max-zoom');
set maxZoom(String value) {
setProperty('max-zoom', value, '');
}
minHeight read / write override#
getter:
Gets the value of "min-height"
setter:
Sets the value of "min-height"
Implementation
String get minHeight => this._minHeight;
set minHeight(String? value) {
_minHeight = value == null ? '' : value;
}
minLogicalHeight read / write inherited#
getter:
Gets the value of "min-logical-height"
setter:
Sets the value of "min-logical-height"
Inherited from CssStyleDeclarationBase.
Implementation
String get minLogicalHeight => getPropertyValue('min-logical-height');
set minLogicalHeight(String value) {
setProperty('min-logical-height', value, '');
}
minLogicalWidth read / write inherited#
getter:
Gets the value of "min-logical-width"
setter:
Sets the value of "min-logical-width"
Inherited from CssStyleDeclarationBase.
Implementation
String get minLogicalWidth => getPropertyValue('min-logical-width');
set minLogicalWidth(String value) {
setProperty('min-logical-width', value, '');
}
minWidth read / write override#
getter:
Gets the value of "min-width"
setter:
Sets the value of "min-width"
Implementation
String get minWidth => this._minWidth;
set minWidth(String? value) {
_minWidth = value == null ? '' : value;
}
minZoom read / write inherited#
getter:
Gets the value of "min-zoom"
setter:
Sets the value of "min-zoom"
Inherited from CssStyleDeclarationBase.
Implementation
String get minZoom => getPropertyValue('min-zoom');
set minZoom(String value) {
setProperty('min-zoom', value, '');
}
mixBlendMode read / write inherited#
getter:
Gets the value of "mix-blend-mode"
setter:
Sets the value of "mix-blend-mode"
Inherited from CssStyleDeclarationBase.
Implementation
String get mixBlendMode => getPropertyValue('mix-blend-mode');
set mixBlendMode(String value) {
setProperty('mix-blend-mode', value, '');
}
objectFit read / write inherited#
getter:
Gets the value of "object-fit"
setter:
Sets the value of "object-fit"
Inherited from CssStyleDeclarationBase.
Implementation
String get objectFit => getPropertyValue('object-fit');
set objectFit(String value) {
setProperty('object-fit', value, '');
}
objectPosition read / write inherited#
getter:
Gets the value of "object-position"
setter:
Sets the value of "object-position"
Inherited from CssStyleDeclarationBase.
Implementation
String get objectPosition => getPropertyValue('object-position');
set objectPosition(String value) {
setProperty('object-position', value, '');
}
opacity read / write inherited#
getter:
Gets the value of "opacity"
setter:
Sets the value of "opacity"
Inherited from CssStyleDeclarationBase.
Implementation
String get opacity => getPropertyValue('opacity');
set opacity(String value) {
setProperty('opacity', value, '');
}
order read / write inherited#
getter:
Gets the value of "order"
setter:
Sets the value of "order"
Inherited from CssStyleDeclarationBase.
Implementation
String get order => getPropertyValue('order');
set order(String value) {
setProperty('order', value, '');
}
orientation read / write inherited#
getter:
Gets the value of "orientation"
setter:
Sets the value of "orientation"
Inherited from CssStyleDeclarationBase.
Implementation
String get orientation => getPropertyValue('orientation');
set orientation(String value) {
setProperty('orientation', value, '');
}
orphans read / write inherited#
getter:
Gets the value of "orphans"
setter:
Sets the value of "orphans"
Inherited from CssStyleDeclarationBase.
Implementation
String get orphans => getPropertyValue('orphans');
set orphans(String value) {
setProperty('orphans', value, '');
}
outline read / write override#
getter:
Gets the value of "outline"
setter:
Sets the value of "outline"
Implementation
String get outline => this._outline;
set outline(String? value) {
_outline = value == null ? '' : value;
}
outlineColor read / write override#
getter:
Gets the value of "outline-color"
setter:
Sets the value of "outline-color"
Implementation
String get outlineColor => this._outlineColor;
set outlineColor(String? value) {
_outlineColor = value == null ? '' : value;
}
outlineOffset read / write inherited#
getter:
Gets the value of "outline-offset"
setter:
Sets the value of "outline-offset"
Inherited from CssStyleDeclarationBase.
Implementation
String get outlineOffset => getPropertyValue('outline-offset');
set outlineOffset(String value) {
setProperty('outline-offset', value, '');
}
outlineStyle read / write override#
getter:
Gets the value of "outline-style"
setter:
Sets the value of "outline-style"
Implementation
String get outlineStyle => this._outlineStyle;
set outlineStyle(String? value) {
_outlineStyle = value == null ? '' : value;
}
outlineWidth read / write override#
getter:
Gets the value of "outline-width"
setter:
Sets the value of "outline-width"
Implementation
String get outlineWidth => this._outlineWidth;
set outlineWidth(String? value) {
_outlineWidth = value == null ? '' : value;
}
overflow read / write override#
getter:
Gets the value of "overflow"
setter:
Sets the value of "overflow"
Implementation
String get overflow => this._overflow;
set overflow(String? value) {
_overflow = value == null ? '' : value;
}
overflowWrap read / write inherited#
getter:
Gets the value of "overflow-wrap"
setter:
Sets the value of "overflow-wrap"
Inherited from CssStyleDeclarationBase.
Implementation
String get overflowWrap => getPropertyValue('overflow-wrap');
set overflowWrap(String value) {
setProperty('overflow-wrap', value, '');
}
overflowX read / write inherited#
getter:
Gets the value of "overflow-x"
setter:
Sets the value of "overflow-x"
Inherited from CssStyleDeclarationBase.
Implementation
String get overflowX => getPropertyValue('overflow-x');
set overflowX(String value) {
setProperty('overflow-x', value, '');
}
overflowY read / write inherited#
getter:
Gets the value of "overflow-y"
setter:
Sets the value of "overflow-y"
Inherited from CssStyleDeclarationBase.
Implementation
String get overflowY => getPropertyValue('overflow-y');
set overflowY(String value) {
setProperty('overflow-y', value, '');
}
padding read / write override#
getter:
Gets the value of "padding"
setter:
Sets the value of "padding"
Implementation
String get padding => this._padding;
set padding(String? value) {
_padding = value == null ? '' : value;
}
paddingAfter read / write inherited#
getter:
Gets the value of "padding-after"
setter:
Sets the value of "padding-after"
Inherited from CssStyleDeclarationBase.
Implementation
String get paddingAfter => getPropertyValue('padding-after');
set paddingAfter(String value) {
setProperty('padding-after', value, '');
}
paddingBefore read / write inherited#
getter:
Gets the value of "padding-before"
setter:
Sets the value of "padding-before"
Inherited from CssStyleDeclarationBase.
Implementation
String get paddingBefore => getPropertyValue('padding-before');
set paddingBefore(String value) {
setProperty('padding-before', value, '');
}
paddingBottom read / write override#
getter:
Gets the value of "padding-bottom"
setter:
Sets the value of "padding-bottom"
Implementation
String get paddingBottom => this._paddingBottom;
set paddingBottom(String? value) {
_paddingBottom = value == null ? '' : value;
}
paddingEnd read / write inherited#
getter:
Gets the value of "padding-end"
setter:
Sets the value of "padding-end"
Inherited from CssStyleDeclarationBase.
Implementation
String get paddingEnd => getPropertyValue('padding-end');
set paddingEnd(String value) {
setProperty('padding-end', value, '');
}
paddingLeft read / write override#
getter:
Gets the value of "padding-left"
setter:
Sets the value of "padding-left"
Implementation
String get paddingLeft => this._paddingLeft;
set paddingLeft(String? value) {
_paddingLeft = value == null ? '' : value;
}
paddingRight read / write override#
getter:
Gets the value of "padding-right"
setter:
Sets the value of "padding-right"
Implementation
String get paddingRight => this._paddingRight;
set paddingRight(String? value) {
_paddingRight = value == null ? '' : value;
}
paddingStart read / write inherited#
getter:
Gets the value of "padding-start"
setter:
Sets the value of "padding-start"
Inherited from CssStyleDeclarationBase.
Implementation
String get paddingStart => getPropertyValue('padding-start');
set paddingStart(String value) {
setProperty('padding-start', value, '');
}
paddingTop read / write override#
getter:
Gets the value of "padding-top"
setter:
Sets the value of "padding-top"
Implementation
String get paddingTop => this._paddingTop;
set paddingTop(String? value) {
_paddingTop = value == null ? '' : value;
}
page read / write inherited#
getter:
Gets the value of "page"
setter:
Sets the value of "page"
Inherited from CssStyleDeclarationBase.
Implementation
String get page => getPropertyValue('page');
set page(String value) {
setProperty('page', value, '');
}
pageBreakAfter read / write override#
getter:
Gets the value of "page-break-after"
setter:
Sets the value of "page-break-after"
Implementation
String get pageBreakAfter => this._pageBreakAfter;
set pageBreakAfter(String? value) {
_pageBreakAfter = value == null ? '' : value;
}
pageBreakBefore read / write override#
getter:
Gets the value of "page-break-before"
setter:
Sets the value of "page-break-before"
Implementation
String get pageBreakBefore => this._pageBreakBefore;
set pageBreakBefore(String? value) {
_pageBreakBefore = value == null ? '' : value;
}
pageBreakInside read / write override#
getter:
Gets the value of "page-break-inside"
setter:
Sets the value of "page-break-inside"
Implementation
String get pageBreakInside => this._pageBreakInside;
set pageBreakInside(String? value) {
_pageBreakInside = value == null ? '' : value;
}
parentRule no setter#
Implementation
CssRule? get parentRule native;
perspective read / write inherited#
getter:
Gets the value of "perspective"
setter:
Sets the value of "perspective"
Inherited from CssStyleDeclarationBase.
Implementation
String get perspective => getPropertyValue('perspective');
set perspective(String value) {
setProperty('perspective', value, '');
}
perspectiveOrigin read / write inherited#
getter:
Gets the value of "perspective-origin"
setter:
Sets the value of "perspective-origin"
Inherited from CssStyleDeclarationBase.
Implementation
String get perspectiveOrigin => getPropertyValue('perspective-origin');
set perspectiveOrigin(String value) {
setProperty('perspective-origin', value, '');
}
perspectiveOriginX read / write inherited#
getter:
Gets the value of "perspective-origin-x"
setter:
Sets the value of "perspective-origin-x"
Inherited from CssStyleDeclarationBase.
Implementation
String get perspectiveOriginX => getPropertyValue('perspective-origin-x');
set perspectiveOriginX(String value) {
setProperty('perspective-origin-x', value, '');
}
perspectiveOriginY read / write inherited#
getter:
Gets the value of "perspective-origin-y"
setter:
Sets the value of "perspective-origin-y"
Inherited from CssStyleDeclarationBase.
Implementation
String get perspectiveOriginY => getPropertyValue('perspective-origin-y');
set perspectiveOriginY(String value) {
setProperty('perspective-origin-y', value, '');
}
pointerEvents read / write inherited#
getter:
Gets the value of "pointer-events"
setter:
Sets the value of "pointer-events"
Inherited from CssStyleDeclarationBase.
Implementation
String get pointerEvents => getPropertyValue('pointer-events');
set pointerEvents(String value) {
setProperty('pointer-events', value, '');
}
position read / write override#
getter:
Gets the value of "position"
setter:
Sets the value of "position"
Implementation
String get position => this._position;
set position(String? value) {
_position = value == null ? '' : value;
}
printColorAdjust read / write inherited#
getter:
Gets the value of "print-color-adjust"
setter:
Sets the value of "print-color-adjust"
Inherited from CssStyleDeclarationBase.
Implementation
String get printColorAdjust => getPropertyValue('print-color-adjust');
set printColorAdjust(String value) {
setProperty('print-color-adjust', value, '');
}
quotes read / write override#
getter:
Gets the value of "quotes"
setter:
Sets the value of "quotes"
Implementation
String get quotes => this._quotes;
set quotes(String? value) {
_quotes = value == null ? '' : value;
}
resize read / write inherited#
getter:
Gets the value of "resize"
setter:
Sets the value of "resize"
Inherited from CssStyleDeclarationBase.
Implementation
String get resize => getPropertyValue('resize');
set resize(String value) {
setProperty('resize', value, '');
}
right read / write override#
getter:
Gets the value of "right"
setter:
Sets the value of "right"
Implementation
String get right => this._right;
set right(String? value) {
_right = value == null ? '' : value;
}
rowGap read / write inherited#
getter:
Gets the value of "row-gap"
setter:
Sets the value of "row-gap"
Inherited from CssStyleDeclarationBase.
Implementation
String get rowGap => getPropertyValue('row-gap');
set rowGap(String value) {
setProperty('row-gap', value, '');
}
rtlOrdering read / write inherited#
getter:
Gets the value of "rtl-ordering"
setter:
Sets the value of "rtl-ordering"
Inherited from CssStyleDeclarationBase.
Implementation
String get rtlOrdering => getPropertyValue('rtl-ordering');
set rtlOrdering(String value) {
setProperty('rtl-ordering', value, '');
}
rubyPosition read / write inherited#
getter:
Gets the value of "ruby-position"
setter:
Sets the value of "ruby-position"
Inherited from CssStyleDeclarationBase.
Implementation
String get rubyPosition => getPropertyValue('ruby-position');
set rubyPosition(String value) {
setProperty('ruby-position', value, '');
}
runtimeType no setter inherited#
Inherited from Interceptor.
Implementation
Type get runtimeType =>
getRuntimeTypeOfInterceptorNotArray(getInterceptor(this), this);
scrollBehavior read / write inherited#
getter:
Gets the value of "scroll-behavior"
setter:
Sets the value of "scroll-behavior"
Inherited from CssStyleDeclarationBase.
Implementation
String get scrollBehavior => getPropertyValue('scroll-behavior');
set scrollBehavior(String value) {
setProperty('scroll-behavior', value, '');
}
shapeImageThreshold read / write inherited#
getter:
Gets the value of "shape-image-threshold"
setter:
Sets the value of "shape-image-threshold"
Inherited from CssStyleDeclarationBase.
Implementation
String get shapeImageThreshold => getPropertyValue('shape-image-threshold');
set shapeImageThreshold(String value) {
setProperty('shape-image-threshold', value, '');
}
shapeMargin read / write inherited#
getter:
Gets the value of "shape-margin"
setter:
Sets the value of "shape-margin"
Inherited from CssStyleDeclarationBase.
Implementation
String get shapeMargin => getPropertyValue('shape-margin');
set shapeMargin(String value) {
setProperty('shape-margin', value, '');
}
shapeOutside read / write inherited#
getter:
Gets the value of "shape-outside"
setter:
Sets the value of "shape-outside"
Inherited from CssStyleDeclarationBase.
Implementation
String get shapeOutside => getPropertyValue('shape-outside');
set shapeOutside(String value) {
setProperty('shape-outside', value, '');
}
size read / write inherited#
getter:
Gets the value of "size"
setter:
Sets the value of "size"
Inherited from CssStyleDeclarationBase.
Implementation
String get size => getPropertyValue('size');
set size(String value) {
setProperty('size', value, '');
}
speak read / write inherited#
getter:
Gets the value of "speak"
setter:
Sets the value of "speak"
Inherited from CssStyleDeclarationBase.
Implementation
String get speak => getPropertyValue('speak');
set speak(String value) {
setProperty('speak', value, '');
}
src read / write inherited#
getter:
Gets the value of "src"
setter:
Sets the value of "src"
Inherited from CssStyleDeclarationBase.
Implementation
String get src => getPropertyValue('src');
set src(String value) {
setProperty('src', value, '');
}
tableLayout read / write override#
getter:
Gets the value of "table-layout"
setter:
Sets the value of "table-layout"
Implementation
String get tableLayout => this._tableLayout;
set tableLayout(String? value) {
_tableLayout = value == null ? '' : value;
}
tabSize read / write inherited#
getter:
Gets the value of "tab-size"
setter:
Sets the value of "tab-size"
Inherited from CssStyleDeclarationBase.
Implementation
String get tabSize => getPropertyValue('tab-size');
set tabSize(String value) {
setProperty('tab-size', value, '');
}
tapHighlightColor read / write inherited#
getter:
Gets the value of "tap-highlight-color"
setter:
Sets the value of "tap-highlight-color"
Inherited from CssStyleDeclarationBase.
Implementation
String get tapHighlightColor => getPropertyValue('tap-highlight-color');
set tapHighlightColor(String value) {
setProperty('tap-highlight-color', value, '');
}
textAlign read / write override#
getter:
Gets the value of "text-align"
setter:
Sets the value of "text-align"
Implementation
String get textAlign => this._textAlign;
set textAlign(String? value) {
_textAlign = value == null ? '' : value;
}
textAlignLast read / write inherited#
getter:
Gets the value of "text-align-last"
setter:
Sets the value of "text-align-last"
Inherited from CssStyleDeclarationBase.
Implementation
String get textAlignLast => getPropertyValue('text-align-last');
set textAlignLast(String value) {
setProperty('text-align-last', value, '');
}
textCombine read / write inherited#
getter:
Gets the value of "text-combine"
setter:
Sets the value of "text-combine"
Inherited from CssStyleDeclarationBase.
Implementation
String get textCombine => getPropertyValue('text-combine');
set textCombine(String value) {
setProperty('text-combine', value, '');
}
textDecoration read / write override#
getter:
Gets the value of "text-decoration"
setter:
Sets the value of "text-decoration"
Implementation
String get textDecoration => this._textDecoration;
set textDecoration(String? value) {
_textDecoration = value == null ? '' : value;
}
textDecorationColor read / write inherited#
getter:
Gets the value of "text-decoration-color"
setter:
Sets the value of "text-decoration-color"
Inherited from CssStyleDeclarationBase.
Implementation
String get textDecorationColor => getPropertyValue('text-decoration-color');
set textDecorationColor(String value) {
setProperty('text-decoration-color', value, '');
}
textDecorationLine read / write inherited#
getter:
Gets the value of "text-decoration-line"
setter:
Sets the value of "text-decoration-line"
Inherited from CssStyleDeclarationBase.
Implementation
String get textDecorationLine => getPropertyValue('text-decoration-line');
set textDecorationLine(String value) {
setProperty('text-decoration-line', value, '');
}
textDecorationsInEffect read / write inherited#
getter:
Gets the value of "text-decorations-in-effect"
setter:
Sets the value of "text-decorations-in-effect"
Inherited from CssStyleDeclarationBase.
Implementation
String get textDecorationsInEffect =>
getPropertyValue('text-decorations-in-effect');
set textDecorationsInEffect(String value) {
setProperty('text-decorations-in-effect', value, '');
}
textDecorationStyle read / write inherited#
getter:
Gets the value of "text-decoration-style"
setter:
Sets the value of "text-decoration-style"
Inherited from CssStyleDeclarationBase.
Implementation
String get textDecorationStyle => getPropertyValue('text-decoration-style');
set textDecorationStyle(String value) {
setProperty('text-decoration-style', value, '');
}
textEmphasis read / write inherited#
getter:
Gets the value of "text-emphasis"
setter:
Sets the value of "text-emphasis"
Inherited from CssStyleDeclarationBase.
Implementation
String get textEmphasis => getPropertyValue('text-emphasis');
set textEmphasis(String value) {
setProperty('text-emphasis', value, '');
}
textEmphasisColor read / write inherited#
getter:
Gets the value of "text-emphasis-color"
setter:
Sets the value of "text-emphasis-color"
Inherited from CssStyleDeclarationBase.
Implementation
String get textEmphasisColor => getPropertyValue('text-emphasis-color');
set textEmphasisColor(String value) {
setProperty('text-emphasis-color', value, '');
}
textEmphasisPosition read / write inherited#
getter:
Gets the value of "text-emphasis-position"
setter:
Sets the value of "text-emphasis-position"
Inherited from CssStyleDeclarationBase.
Implementation
String get textEmphasisPosition => getPropertyValue('text-emphasis-position');
set textEmphasisPosition(String value) {
setProperty('text-emphasis-position', value, '');
}
textEmphasisStyle read / write inherited#
getter:
Gets the value of "text-emphasis-style"
setter:
Sets the value of "text-emphasis-style"
Inherited from CssStyleDeclarationBase.
Implementation
String get textEmphasisStyle => getPropertyValue('text-emphasis-style');
set textEmphasisStyle(String value) {
setProperty('text-emphasis-style', value, '');
}
textFillColor read / write inherited#
getter:
Gets the value of "text-fill-color"
setter:
Sets the value of "text-fill-color"
Inherited from CssStyleDeclarationBase.
Implementation
String get textFillColor => getPropertyValue('text-fill-color');
set textFillColor(String value) {
setProperty('text-fill-color', value, '');
}
textIndent read / write override#
getter:
Gets the value of "text-indent"
setter:
Sets the value of "text-indent"
Implementation
String get textIndent => this._textIndent;
set textIndent(String? value) {
_textIndent = value == null ? '' : value;
}
textJustify read / write inherited#
getter:
Gets the value of "text-justify"
setter:
Sets the value of "text-justify"
Inherited from CssStyleDeclarationBase.
Implementation
String get textJustify => getPropertyValue('text-justify');
set textJustify(String value) {
setProperty('text-justify', value, '');
}
textLineThroughColor read / write inherited#
getter:
Gets the value of "text-line-through-color"
setter:
Sets the value of "text-line-through-color"
Inherited from CssStyleDeclarationBase.
Implementation
String get textLineThroughColor =>
getPropertyValue('text-line-through-color');
set textLineThroughColor(String value) {
setProperty('text-line-through-color', value, '');
}
textLineThroughMode read / write inherited#
getter:
Gets the value of "text-line-through-mode"
setter:
Sets the value of "text-line-through-mode"
Inherited from CssStyleDeclarationBase.
Implementation
String get textLineThroughMode => getPropertyValue('text-line-through-mode');
set textLineThroughMode(String value) {
setProperty('text-line-through-mode', value, '');
}
textLineThroughStyle read / write inherited#
getter:
Gets the value of "text-line-through-style"
setter:
Sets the value of "text-line-through-style"
Inherited from CssStyleDeclarationBase.
Implementation
String get textLineThroughStyle =>
getPropertyValue('text-line-through-style');
set textLineThroughStyle(String value) {
setProperty('text-line-through-style', value, '');
}
textLineThroughWidth read / write inherited#
getter:
Gets the value of "text-line-through-width"
setter:
Sets the value of "text-line-through-width"
Inherited from CssStyleDeclarationBase.
Implementation
String get textLineThroughWidth =>
getPropertyValue('text-line-through-width');
set textLineThroughWidth(String value) {
setProperty('text-line-through-width', value, '');
}
textOrientation read / write inherited#
getter:
Gets the value of "text-orientation"
setter:
Sets the value of "text-orientation"
Inherited from CssStyleDeclarationBase.
Implementation
String get textOrientation => getPropertyValue('text-orientation');
set textOrientation(String value) {
setProperty('text-orientation', value, '');
}
textOverflow read / write inherited#
getter:
Gets the value of "text-overflow"
setter:
Sets the value of "text-overflow"
Inherited from CssStyleDeclarationBase.
Implementation
String get textOverflow => getPropertyValue('text-overflow');
set textOverflow(String value) {
setProperty('text-overflow', value, '');
}
textOverlineColor read / write inherited#
getter:
Gets the value of "text-overline-color"
setter:
Sets the value of "text-overline-color"
Inherited from CssStyleDeclarationBase.
Implementation
String get textOverlineColor => getPropertyValue('text-overline-color');
set textOverlineColor(String value) {
setProperty('text-overline-color', value, '');
}
textOverlineMode read / write inherited#
getter:
Gets the value of "text-overline-mode"
setter:
Sets the value of "text-overline-mode"
Inherited from CssStyleDeclarationBase.
Implementation
String get textOverlineMode => getPropertyValue('text-overline-mode');
set textOverlineMode(String value) {
setProperty('text-overline-mode', value, '');
}
textOverlineStyle read / write inherited#
getter:
Gets the value of "text-overline-style"
setter:
Sets the value of "text-overline-style"
Inherited from CssStyleDeclarationBase.
Implementation
String get textOverlineStyle => getPropertyValue('text-overline-style');
set textOverlineStyle(String value) {
setProperty('text-overline-style', value, '');
}
textOverlineWidth read / write inherited#
getter:
Gets the value of "text-overline-width"
setter:
Sets the value of "text-overline-width"
Inherited from CssStyleDeclarationBase.
Implementation
String get textOverlineWidth => getPropertyValue('text-overline-width');
set textOverlineWidth(String value) {
setProperty('text-overline-width', value, '');
}
textRendering read / write inherited#
getter:
Gets the value of "text-rendering"
setter:
Sets the value of "text-rendering"
Inherited from CssStyleDeclarationBase.
Implementation
String get textRendering => getPropertyValue('text-rendering');
set textRendering(String value) {
setProperty('text-rendering', value, '');
}
textSecurity read / write inherited#
getter:
Gets the value of "text-security"
setter:
Sets the value of "text-security"
Inherited from CssStyleDeclarationBase.
Implementation
String get textSecurity => getPropertyValue('text-security');
set textSecurity(String value) {
setProperty('text-security', value, '');
}
textShadow read / write inherited#
getter:
Gets the value of "text-shadow"
setter:
Sets the value of "text-shadow"
Inherited from CssStyleDeclarationBase.
Implementation
String get textShadow => getPropertyValue('text-shadow');
set textShadow(String value) {
setProperty('text-shadow', value, '');
}
textStroke read / write inherited#
getter:
Gets the value of "text-stroke"
setter:
Sets the value of "text-stroke"
Inherited from CssStyleDeclarationBase.
Implementation
String get textStroke => getPropertyValue('text-stroke');
set textStroke(String value) {
setProperty('text-stroke', value, '');
}
textStrokeColor read / write inherited#
getter:
Gets the value of "text-stroke-color"
setter:
Sets the value of "text-stroke-color"
Inherited from CssStyleDeclarationBase.
Implementation
String get textStrokeColor => getPropertyValue('text-stroke-color');
set textStrokeColor(String value) {
setProperty('text-stroke-color', value, '');
}
textStrokeWidth read / write inherited#
getter:
Gets the value of "text-stroke-width"
setter:
Sets the value of "text-stroke-width"
Inherited from CssStyleDeclarationBase.
Implementation
String get textStrokeWidth => getPropertyValue('text-stroke-width');
set textStrokeWidth(String value) {
setProperty('text-stroke-width', value, '');
}
textTransform read / write override#
getter:
Gets the value of "text-transform"
setter:
Sets the value of "text-transform"
Implementation
String get textTransform => this._textTransform;
set textTransform(String? value) {
_textTransform = value == null ? '' : value;
}
textUnderlineColor read / write inherited#
getter:
Gets the value of "text-underline-color"
setter:
Sets the value of "text-underline-color"
Inherited from CssStyleDeclarationBase.
Implementation
String get textUnderlineColor => getPropertyValue('text-underline-color');
set textUnderlineColor(String value) {
setProperty('text-underline-color', value, '');
}
textUnderlineMode read / write inherited#
getter:
Gets the value of "text-underline-mode"
setter:
Sets the value of "text-underline-mode"
Inherited from CssStyleDeclarationBase.
Implementation
String get textUnderlineMode => getPropertyValue('text-underline-mode');
set textUnderlineMode(String value) {
setProperty('text-underline-mode', value, '');
}
textUnderlinePosition read / write inherited#
getter:
Gets the value of "text-underline-position"
setter:
Sets the value of "text-underline-position"
Inherited from CssStyleDeclarationBase.
Implementation
String get textUnderlinePosition =>
getPropertyValue('text-underline-position');
set textUnderlinePosition(String value) {
setProperty('text-underline-position', value, '');
}
textUnderlineStyle read / write inherited#
getter:
Gets the value of "text-underline-style"
setter:
Sets the value of "text-underline-style"
Inherited from CssStyleDeclarationBase.
Implementation
String get textUnderlineStyle => getPropertyValue('text-underline-style');
set textUnderlineStyle(String value) {
setProperty('text-underline-style', value, '');
}
textUnderlineWidth read / write inherited#
getter:
Gets the value of "text-underline-width"
setter:
Sets the value of "text-underline-width"
Inherited from CssStyleDeclarationBase.
Implementation
String get textUnderlineWidth => getPropertyValue('text-underline-width');
set textUnderlineWidth(String value) {
setProperty('text-underline-width', value, '');
}
top read / write override#
getter:
Gets the value of "top"
setter:
Sets the value of "top"
Implementation
String get top => this._top;
set top(String? value) {
_top = value == null ? '' : value;
}
touchAction read / write inherited#
getter:
Gets the value of "touch-action"
setter:
Sets the value of "touch-action"
Inherited from CssStyleDeclarationBase.
Implementation
String get touchAction => getPropertyValue('touch-action');
set touchAction(String value) {
setProperty('touch-action', value, '');
}
touchActionDelay read / write inherited#
getter:
Gets the value of "touch-action-delay"
setter:
Sets the value of "touch-action-delay"
Inherited from CssStyleDeclarationBase.
Implementation
String get touchActionDelay => getPropertyValue('touch-action-delay');
set touchActionDelay(String value) {
setProperty('touch-action-delay', value, '');
}
transform read / write inherited#
getter:
Gets the value of "transform"
setter:
Sets the value of "transform"
Inherited from CssStyleDeclarationBase.
Implementation
String get transform => getPropertyValue('transform');
set transform(String value) {
setProperty('transform', value, '');
}
transformOrigin read / write inherited#
getter:
Gets the value of "transform-origin"
setter:
Sets the value of "transform-origin"
Inherited from CssStyleDeclarationBase.
Implementation
String get transformOrigin => getPropertyValue('transform-origin');
set transformOrigin(String value) {
setProperty('transform-origin', value, '');
}
transformOriginX read / write inherited#
getter:
Gets the value of "transform-origin-x"
setter:
Sets the value of "transform-origin-x"
Inherited from CssStyleDeclarationBase.
Implementation
String get transformOriginX => getPropertyValue('transform-origin-x');
set transformOriginX(String value) {
setProperty('transform-origin-x', value, '');
}
transformOriginY read / write inherited#
getter:
Gets the value of "transform-origin-y"
setter:
Sets the value of "transform-origin-y"
Inherited from CssStyleDeclarationBase.
Implementation
String get transformOriginY => getPropertyValue('transform-origin-y');
set transformOriginY(String value) {
setProperty('transform-origin-y', value, '');
}
transformOriginZ read / write inherited#
getter:
Gets the value of "transform-origin-z"
setter:
Sets the value of "transform-origin-z"
Inherited from CssStyleDeclarationBase.
Implementation
String get transformOriginZ => getPropertyValue('transform-origin-z');
set transformOriginZ(String value) {
setProperty('transform-origin-z', value, '');
}
transformStyle read / write inherited#
getter:
Gets the value of "transform-style"
setter:
Sets the value of "transform-style"
Inherited from CssStyleDeclarationBase.
Implementation
String get transformStyle => getPropertyValue('transform-style');
set transformStyle(String value) {
setProperty('transform-style', value, '');
}
transition read / write inherited#
getter:
Gets the value of "transition"
setter:
Sets the value of "transition"
Inherited from CssStyleDeclarationBase.
Implementation
@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#
getter:
Gets the value of "transition-delay"
setter:
Sets the value of "transition-delay"
Inherited from CssStyleDeclarationBase.
Implementation
String get transitionDelay => getPropertyValue('transition-delay');
set transitionDelay(String value) {
setProperty('transition-delay', value, '');
}
transitionDuration read / write inherited#
getter:
Gets the value of "transition-duration"
setter:
Sets the value of "transition-duration"
Inherited from CssStyleDeclarationBase.
Implementation
String get transitionDuration => getPropertyValue('transition-duration');
set transitionDuration(String value) {
setProperty('transition-duration', value, '');
}
transitionProperty read / write inherited#
getter:
Gets the value of "transition-property"
setter:
Sets the value of "transition-property"
Inherited from CssStyleDeclarationBase.
Implementation
String get transitionProperty => getPropertyValue('transition-property');
set transitionProperty(String value) {
setProperty('transition-property', value, '');
}
transitionTimingFunction read / write inherited#
getter:
Gets the value of "transition-timing-function"
setter:
Sets the value of "transition-timing-function"
Inherited from CssStyleDeclarationBase.
Implementation
String get transitionTimingFunction =>
getPropertyValue('transition-timing-function');
set transitionTimingFunction(String value) {
setProperty('transition-timing-function', value, '');
}
unicodeBidi read / write override#
getter:
Gets the value of "unicode-bidi"
setter:
Sets the value of "unicode-bidi"
Implementation
String get unicodeBidi => this._unicodeBidi;
set unicodeBidi(String? value) {
_unicodeBidi = value == null ? '' : value;
}
unicodeRange read / write inherited#
getter:
Gets the value of "unicode-range"
setter:
Sets the value of "unicode-range"
Inherited from CssStyleDeclarationBase.
Implementation
String get unicodeRange => getPropertyValue('unicode-range');
set unicodeRange(String value) {
setProperty('unicode-range', value, '');
}
userDrag read / write inherited#
getter:
Gets the value of "user-drag"
setter:
Sets the value of "user-drag"
Inherited from CssStyleDeclarationBase.
Implementation
String get userDrag => getPropertyValue('user-drag');
set userDrag(String value) {
setProperty('user-drag', value, '');
}
userModify read / write inherited#
getter:
Gets the value of "user-modify"
setter:
Sets the value of "user-modify"
Inherited from CssStyleDeclarationBase.
Implementation
String get userModify => getPropertyValue('user-modify');
set userModify(String value) {
setProperty('user-modify', value, '');
}
userSelect read / write inherited#
getter:
Gets the value of "user-select"
setter:
Sets the value of "user-select"
Inherited from CssStyleDeclarationBase.
Implementation
String get userSelect => getPropertyValue('user-select');
set userSelect(String value) {
setProperty('user-select', value, '');
}
userZoom read / write inherited#
getter:
Gets the value of "user-zoom"
setter:
Sets the value of "user-zoom"
Inherited from CssStyleDeclarationBase.
Implementation
String get userZoom => getPropertyValue('user-zoom');
set userZoom(String value) {
setProperty('user-zoom', value, '');
}
verticalAlign read / write override#
getter:
Gets the value of "vertical-align"
setter:
Sets the value of "vertical-align"
Implementation
String get verticalAlign => this._verticalAlign;
set verticalAlign(String? value) {
_verticalAlign = value == null ? '' : value;
}
visibility read / write override#
getter:
Gets the value of "visibility"
setter:
Sets the value of "visibility"
Implementation
String get visibility => this._visibility;
set visibility(String? value) {
_visibility = value == null ? '' : value;
}
whiteSpace read / write override#
getter:
Gets the value of "white-space"
setter:
Sets the value of "white-space"
Implementation
String get whiteSpace => this._whiteSpace;
set whiteSpace(String? value) {
_whiteSpace = value == null ? '' : value;
}
widows read / write inherited#
getter:
Gets the value of "widows"
setter:
Sets the value of "widows"
Inherited from CssStyleDeclarationBase.
Implementation
String get widows => getPropertyValue('widows');
set widows(String value) {
setProperty('widows', value, '');
}
width read / write override#
getter:
Gets the value of "width"
setter:
Sets the value of "width"
Implementation
String get width => this._width;
set width(String? value) {
_width = value == null ? '' : value;
}
willChange read / write inherited#
getter:
Gets the value of "will-change"
setter:
Sets the value of "will-change"
Inherited from CssStyleDeclarationBase.
Implementation
String get willChange => getPropertyValue('will-change');
set willChange(String value) {
setProperty('will-change', value, '');
}
wordBreak read / write inherited#
getter:
Gets the value of "word-break"
setter:
Sets the value of "word-break"
Inherited from CssStyleDeclarationBase.
Implementation
String get wordBreak => getPropertyValue('word-break');
set wordBreak(String value) {
setProperty('word-break', value, '');
}
wordSpacing read / write override#
getter:
Gets the value of "word-spacing"
setter:
Sets the value of "word-spacing"
Implementation
String get wordSpacing => this._wordSpacing;
set wordSpacing(String? value) {
_wordSpacing = value == null ? '' : value;
}
wordWrap read / write inherited#
getter:
Gets the value of "word-wrap"
setter:
Sets the value of "word-wrap"
Inherited from CssStyleDeclarationBase.
Implementation
String get wordWrap => getPropertyValue('word-wrap');
set wordWrap(String value) {
setProperty('word-wrap', value, '');
}
wrapFlow read / write inherited#
getter:
Gets the value of "wrap-flow"
setter:
Sets the value of "wrap-flow"
Inherited from CssStyleDeclarationBase.
Implementation
String get wrapFlow => getPropertyValue('wrap-flow');
set wrapFlow(String value) {
setProperty('wrap-flow', value, '');
}
wrapThrough read / write inherited#
getter:
Gets the value of "wrap-through"
setter:
Sets the value of "wrap-through"
Inherited from CssStyleDeclarationBase.
Implementation
String get wrapThrough => getPropertyValue('wrap-through');
set wrapThrough(String value) {
setProperty('wrap-through', value, '');
}
writingMode read / write inherited#
getter:
Gets the value of "writing-mode"
setter:
Sets the value of "writing-mode"
Inherited from CssStyleDeclarationBase.
Implementation
String get writingMode => getPropertyValue('writing-mode');
set writingMode(String value) {
setProperty('writing-mode', value, '');
}
zIndex read / write override#
getter:
Gets the value of "z-index"
setter:
Sets the value of "z-index"
Implementation
String get zIndex => this._zIndex;
set zIndex(String? value) {
_zIndex = value == null ? '' : value;
}
zoom read / write inherited#
getter:
Gets the value of "zoom"
setter:
Sets the value of "zoom"
Inherited from CssStyleDeclarationBase.
Implementation
String get zoom => getPropertyValue('zoom');
set zoom(String value) {
setProperty('zoom', value, '');
}
Methods#
getPropertyPriority()#
Implementation
String getPropertyPriority(String property) native;
getPropertyValue() override#
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
String getPropertyValue(String propertyName) {
return _getPropertyValueHelper(propertyName);
}
item()#
Implementation
String item(int index) native;
noSuchMethod() inherited#
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:
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:
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
dynamic noSuchMethod(Invocation invocation) {
throw NoSuchMethodError.withInvocation(this, invocation);
}
removeProperty()#
Implementation
String removeProperty(String property) native;
setProperty() override#
Implementation
void setProperty(String propertyName, String? value, [String? priority]) {
return _setPropertyHelper(
_browserPropertyName(propertyName),
value,
priority,
);
}
supportsProperty()#
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
bool supportsProperty(String propertyName) {
return _supportsProperty(propertyName) ||
_supportsProperty(_camelCase("${Device.cssPrefix}$propertyName"));
}
toString() inherited#
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
String toString() => Primitives.objectToHumanReadableString(this);
Operators#
operator ==() inherited#
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 == omust be true.-
Symmetric: For all objects
o1ando2,o1 == o2ando2 == o1must either both be true, or both be false. -
Transitive: For all objects
o1,o2, ando3, ifo1 == o2ando2 == o3are true, theno1 == o3must 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
bool operator ==(Object other) => identical(this, other);
Static Properties#
supportsTransitions no setter#
Checks to see if CSS Transitions are supported.
Implementation
static bool get supportsTransitions {
return document.body!.style.supportsProperty('transition');
}