Spacer constructor
Implementation
Spacer({this.flex, this.width, this.height, String? name, Object? visible})
: assert(
flex == null || (width == null && height == null),
'Spacer cannot mix flex with fixed width/height.',
),
super(name: name, visible: _normalizeVisibility(visible));