copy method
Create a deep copy of the Statement.
Implementation
@override
ForLoopStatement copy() {
return ForLoopStatement.init(
initStatement?.copy(),
condition.copy(),
postStatement?.copy(),
List.from(bodyStatements.map((e) => e.copy())),
);
}