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