Gap constructor

const Gap({
  1. Key? key,
  2. Size? size,
  3. Widget? child,
  4. double? width,
  5. double? height,
})

Implementation

const Gap({
  super.key,
  this.size,
  this.child,
  this.width,
  this.height,
});