minIntrinsicHeight method

double minIntrinsicHeight(
  1. double width
)

Override to change the minimum height that this box could be without failing to correctly paint its contents within itself, without clipping.

See also:

Implementation

double minIntrinsicHeight(double width) {
  assert(() {
    if (!RenderObject.debugCheckingIntrinsics) {
      throw FlutterError(
          'Something tried to get the minimum intrinsic height of the boxy delegate $this.\n'
          'You must override minIntrinsicHeight to use the intrinsic width.');
    }
    return true;
  }());
  return 0.0;
}