booleanNodeOrNull method

JsonBoolean? booleanNodeOrNull(
  1. String key
)

Get JsonBoolean or null by String key.

Throws SquintException if key is not found.

Implementation

JsonBoolean? booleanNodeOrNull(String key) =>
    _byKeyOfType<JsonBoolean>(key, true);