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