XSpacer constructor

const XSpacer({
  1. Key? key,
  2. double? height,
  3. double? width,
})

Creates a simple spacing widget.

Provide either height for vertical space or width for horizontal space.

Implementation

const XSpacer({super.key, this.height, this.width});