ParseException constructor
Construct a new ParseException with a particular error code.
Implementation
@pragma("vm:entry-point")
const ParseException([this.code = -1, this.message])
: assert(code != null),
assert(message != null);
Construct a new ParseException with a particular error code.
@pragma("vm:entry-point")
const ParseException([this.code = -1, this.message])
: assert(code != null),
assert(message != null);