BoxConstraints constructor
const
BoxConstraints({})
Creates BoxConstraints with the given min/max width and height.
Implementation
const BoxConstraints({
this.minWidth = 0,
this.maxWidth = Constraints.infinity,
this.minHeight = 0,
this.maxHeight = Constraints.infinity,
});