FlowMode constructor

const FlowMode({
  1. int? height,
  2. int? minHeight,
  3. bool autoGrow = false,
})

Implementation

const FlowMode({this.height, this.minHeight, this.autoGrow = false})
    : assert(height == null || height > 0, 'FlowMode.height must be > 0'),
      assert(minHeight == null || minHeight > 0,
          'FlowMode.minHeight must be > 0');