parseBooleanValue method

BooleanValueContext? parseBooleanValue()

Implementation

BooleanValueContext? parseBooleanValue() =>
    (nextName('true') || nextName('false') && current != null)
        ? BooleanValueContext(current!)
        : null;