constrainWidth method

double constrainWidth([
  1. double width = double.infinity
])

Returns the width that both satisfies the constraints and is as close as possible to the given width.

Implementation

double constrainWidth([double width = double.infinity]) {
  assert(debugAssertIsValid());
  return clampDouble(width, minWidth, maxWidth);
}