timeLexer top-level property

Parser<TimeParser> timeLexer
final

Follows Time format specified in FHIRPath

Implementation

final timeLexer = (char('@') & char('T') & timeFormatLexer)
    .flatten()
    .map((value) => TimeParser(value));