minimumSize method

void minimumSize({
  1. double width = 0,
  2. double height = 0,
})

Sets the minimum size of the viewport (excluding the padding) which is available to the use case when it is displayed as a thumbnail in the overview. The thumbnail may then scale the use case smaller so that it effectively has at least the given amount of space within its own scaled down coordinate system.

Implementation

void minimumSize({double width = 0, double height = 0}) {
  _merge(minSize: Size(width, height));
}