ScreenScope constructor
const
ScreenScope({})
Implementation
const ScreenScope({
this.minWidth = 0.0,
this.maxWidth = screenMaxDimension,
this.minHeight = 0.0,
this.maxHeight = screenMaxDimension,
}) : assert(minWidth >= 0.0 &&
minWidth <= maxWidth &&
maxWidth <= screenMaxDimension &&
minHeight >= 0.0 &&
minHeight <= maxHeight &&
maxHeight <= screenMaxDimension);