moveX method
      
T
moveX({})
      
     
    
Adds a MoveEffect that moves the target horizontally between the specified begin and end
pixel amounts (via Transform.translate).
Implementation
T moveX({
  Duration? delay,
  Duration? duration,
  Curve? curve,
  double? begin,
  double? end,
  bool? transformHitTests,
}) {
  begin ??= end == null ? MoveEffect.defaultMove : MoveEffect.neutralMove;
  end ??= MoveEffect.neutralMove;
  return addEffect(MoveEffect(
    delay: delay,
    duration: duration,
    curve: curve,
    begin: MoveEffect.neutralValue.copyWith(dx: begin),
    end: MoveEffect.neutralValue.copyWith(dx: end),
    transformHitTests: transformHitTests,
  ));
}