left property

num left

Gets or sets the leftmost value of the Rect. This is the same as the X value.

Implementation

_i2.num get left => _i4.getProperty(
      this,
      'left',
    );
void left=(num value)

Implementation

set left(_i2.num value) {
  _i4.setProperty(
    this,
    'left',
    value,
  );
}