withValue method

DeclareVarStmt withValue(
  1. Expression? replacement
)

Implementation

DeclareVarStmt withValue(Expression? replacement) {
  return DeclareVarStmt(name, replacement, type, modifiers);
}