handPlay method

void handPlay({
  1. bool prewStory = false,
})

Implementation

void handPlay({bool prewStory = false}) {
  if (prewStory) {
    previous();
  } else if (_goingNext) {
    next();
  } else {
    play();
  }
}