copy method
Create a deep copy of the Statement.
Implementation
@override
StatementBlock copy() {
return StatementBlock.init(
statements: List.from(statements.map((e) => e.copy())),
isIsolated: isIsolated,
);
}
Create a deep copy of the Statement.
@override
StatementBlock copy() {
return StatementBlock.init(
statements: List.from(statements.map((e) => e.copy())),
isIsolated: isIsolated,
);
}