parse static method

Expression? parse(
  1. String formattedString
)

Implementation

static Expression? parse(String formattedString) =>
    _parser.expression.end().parse(formattedString).value;