Gap constructor

const Gap(
  1. double size, {
  2. Key? key,
  3. Widget? child,
})

Implementation

const Gap(
  this.size, {
  Key? key,
  this.child,
}) : super(key: key);