shuffle method

  1. @override
WhileLoopStatement shuffle()
override

Implementation

@override
WhileLoopStatement shuffle() {
  return WhileLoopStatement.init(
    isDoWhile,
    condition,
    bodyStatements.map((e) => e.shuffle()).toList()..shuffle(),
  );
}