floatNodeOrNull method

JsonFloatingNumber? floatNodeOrNull(
  1. String key
)

Get JsonFloatingNumber or null by String key.

Throws SquintException if key is not found.

Implementation

JsonFloatingNumber? floatNodeOrNull(String key) =>
    _byKeyOfType<JsonFloatingNumber>(key, true);