RowHeight.expanded constructor

RowHeight.expanded({
  1. required double minHeight,
  2. double? maxHeight,
})

Implementation

factory RowHeight.expanded({
  required double minHeight,
  double? maxHeight,
}) =>
    RowHeightExpanded(
      minHeight: minHeight,
      maxHeight: maxHeight,
    );