copy method

Create a deep copy of the Statement.

Implementation

@override
VariableDeclarationStatement copy() {
  return VariableDeclarationStatement.init(name, dataType, value?.copy());
}