getInt16 method
dynamic
getInt16()
Implementation
getInt16() {
var value = this.dv.buffer.asByteData().getInt16( this.offset, this.littleEndian ? Endian.little : Endian.big );
this.offset += 2;
return value;
}