FixedHeightRows constructor

const FixedHeightRows(
  1. {int height = 1}
)

Creates a layout that splits an area into rows.

Implementation

const FixedHeightRows({
  this.height = 1,
}) : assert(height > 0, 'Height must be greater than 0');