position property - CssStyleDeclaration class - dart:html library (original) (raw)

description

String getposition

override

Gets the value of "position"

Implementation

String get position => this._position;

setposition (String? value)

override

Sets the value of "position"

Implementation

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