toBooleanLexer top-level property

Parser<ToBooleanParser> toBooleanLexer
final

Functions that take no arguments *************************************************************************/ identifies toBooleans

Implementation

/// identifies toBooleans
final Parser<ToBooleanParser> toBooleanLexer =
    (string('toBoolean()') | string('.toBoolean()'))
        .map((_) => ToBooleanParser());