timeLexer top-level property
Follows Time format specified in FHIRPath
Implementation
final timeLexer = (char('@') & char('T') & timeFormatLexer)
.flatten()
.map((value) => TimeParser(value));
Follows Time format specified in FHIRPath
final timeLexer = (char('@') & char('T') & timeFormatLexer)
.flatten()
.map((value) => TimeParser(value));