ProGap constructor

const ProGap({
  1. Key? key,
  2. double? x,
  3. double? y,
})

Use this widget if you need to provide horizontal/vertical gap or space anywhere. Here x is horizontal gap and y is vertical gap.

Implementation

const ProGap({Key? key, this.x, this.y}) : super(key: key);