shift method

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

Implementation

Widget shift(
  double shift, {
  Key? key,
  required Alignment alignment,
}) =>
    VxShifter(
      key: key,
      alignment: alignment,
      shift: shift,
      child: this,
    );