decodeIntOrNull method
Decodes the data as a nullable integer value.
Implementation
@override
int? decodeIntOrNull() {
if (_done) return null;
final key = keys.current;
return decoder.decodeIntOrNull(key is String ? key : '', id: key is int ? key : null);
}