blob: 0c81f6622b7d0c61307c3692a71f6fc8e05b6a84 [file] [log] [blame] [view]
# decodeInt16 method
int decodeInt16
(int offset)
## Implementation
```dart
int decodeInt16(int offset) => data.getInt16(offset, Endian.little);
```