minimum property

num get minimum

Gets or sets the minimum row height or column width, in local coordinates. The minimum describes the row height if #isRow is true; otherwise this describes the column width.

The value must be non-negative and finite. The default value is zero. The arranged height of all objects in this row, or the arranged width of all objects in this column, will be no less than this value.

Implementation

_i2.num get minimum => _i4.getProperty(
      this,
      'minimum',
    );
set minimum (num value)

Implementation

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