copy method
Create a deep copy of the Statement.
Implementation
@override
VariableDeclarationStatement copy() {
return VariableDeclarationStatement.init(name, dataType, value?.copy());
}
Create a deep copy of the Statement.
@override
VariableDeclarationStatement copy() {
return VariableDeclarationStatement.init(name, dataType, value?.copy());
}