arguments property
Parser<List<Expression> >
get
arguments
Implementation
Parser<List<Expression>> get arguments => expression
.separatedBy(char(',').trim(), includeSeparators: false)
.castList<Expression>()
.optionalWith([]);