USpacing constructor

const USpacing({
  1. Key? key,
  2. double? spacing = 6,
  3. bool horizontal = false,
  4. Color? color,
  5. double? height,
  6. double? width,
})

Implementation

const USpacing(
    {super.key,
    this.spacing = 6,
    this.horizontal = false,
    this.color,
    this.height,
    this.width});