fromJson static method
Implementation
static ReturnStatement fromJson(var jsonNode, ASTBuilder builder) {
Expression? argument;
if (jsonNode['argument'] != null) {
argument = builder.buildNode(jsonNode['argument']) as Expression;
}
return ReturnStatement(argument);
}