VxShifter constructor

const VxShifter({
  1. Key? key,
  2. Widget? child,
  3. required Alignment alignment,
  4. required double shift,
})

Implementation

const VxShifter({
  Key? key,

  // @required this.w,
  // this.color,
  this.child,
  required this.alignment,
  required this.shift,

  // @required this.paddingPerc,
}) : super(key: key);