OathTokenCode constructor
Creates OathTokenCode object with given information.
Implementation
OathTokenCode(String? code, int? start, int? until, TokenType tokenType) {
this.code = code;
this.start = start;
this.until = until;
this.oathType = tokenType;
}