ResponsiveGap constructor

const ResponsiveGap({
  1. Key? key,
  2. required double mobile,
  3. double? tablet,
  4. double? desktop,
  5. Axis direction = Axis.vertical,
})

Implementation

const ResponsiveGap({
  super.key,
  required this.mobile,
  this.tablet,
  this.desktop,
  this.direction = Axis.vertical,
});