Space constructor

const Space({
  1. Key? key,
  2. required List<Widget> children,
  3. SpaceAlign? align,
  4. Axis direction = Axis.horizontal,
  5. Size size = Size.small,
  6. Widget? split,
  7. bool wrap = false,
})

Implementation

const Space({
  Key? key,
  required this.children,
  this.align,
  this.direction = Axis.horizontal,
  this.size = Size.small,
  this.split,
  this.wrap = false,
}) : super(key: key);