blob: 9c36757666f6ffbc98c4cbece4cd53d04d8aa0de [file] [log] [blame] [view]
# encodeInt16 method
void encodeInt16
(int value, int offset)
## Implementation
```dart
void encodeInt16(int value, int offset) {
_checkRange(value, -32768, 32767);
data.setInt16(offset, value, Endian.little);
}
```