RowHeight constructor

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

Implementation

const RowHeight({this.minHeight, this.maxHeight})
    : assert(minHeight == null ||
          maxHeight == null ||
          minHeight >= 0 ||
          maxHeight >= 0 ||
          minHeight < maxHeight);