json constant

Codec<Object?> const json

Parsed JSON values; JSON null and SQL NULL both decode to Dart null.

Implementation

static const json = Codec<Object?>('json', _decodeJson, jsonEncode);