getInt32 method

dynamic getInt32()

Implementation

getInt32() {

	var value = this.dv.buffer.asByteData().getInt32( this.offset, this.littleEndian ? Endian.little : Endian.big );
	this.offset += 4;
	return value;

}