Checks if the data for the given key or id is null.
@override bool decodeIsNull(String key, {int? id}) { var d = decoders[key] ?? decoders[id]; return d != null && d.clone().decodeIsNull(); }