RowHeightExpanded constructor

const RowHeightExpanded({
  1. required double minHeight,
  2. double? maxHeight,
})

Implementation

const RowHeightExpanded({
  /// If multiple rows are expanded, the available space is divided
  /// among them according to the [minHeight], but also respecting
  /// [maxHeight]. [minHeight] therefore is required.
  required double minHeight,
  double? maxHeight,
}) : super(minHeight: minHeight, maxHeight: maxHeight);