Decodes the data as a nullable integer value.
@override int? decodeIntOrNull() { if (decodeIsNull()) return null; return int.parse(_parent._readString()); }