setDateTime method
Writes a DateTime to the buffer as an i64
.
The offset must satisy the relations 0
≤ offset
≤ offset+8
≤ this.length
.
Implementation
void setDateTime(final DateTime value) {
_increaseCapacity(ByteLength.i64);
buffer.setDateTime(value, offset);
offset += ByteLength.i64;
}