APPIUM IOS - Swipe left from Element

Hi, for IOS APPIUM automation test how do i Swipe from Right to left on List Element ? ( I have on my screen a list of Element and i want to swipe on the second Element that in the list

thanks !!

import java.time.Duration;
import static io.appium.java_client.touch.offset.PointOption.point;
import static io.appium.java_client.touch.WaitOptions.waitOptions;
public void swipe(int x_start, int y_start, int x_stop, int y_stop, int duration) {
new TouchAction(driver).press(point(x_start, y_start)) .waitAction(waitOptions(ofSeconds(duration)))
.moveTo(point(x_stop, y_stop)) .release() .perform();
}