EasySpace constructor

const EasySpace({
  1. Key? key,
  2. required List<Widget> children,
  3. EasyDirectionType? direction,
  4. EasySpaceSize? size,
  5. bool? wrap,
})

Implementation

const EasySpace({
  Key? key,
  required this.children,
  this.direction,
  this.size,
  this.wrap,
}) : super(key: key);