Decodes the data for the given key or id as a boolean value.
@override bool decodeBool(String key, {int? id}) { var d = decoders[key] ?? decoders[id]; return d!.clone().decodeBool(); }