shuffle method
Implementation
DartBlockCustomFunction shuffle({bool deep = false}) {
return DartBlockCustomFunction(
name,
returnType,
parameters,
deep
? (statements.map((e) => e.shuffle()).toList()..shuffle())
: statements
..shuffle(),
);
}