blob: ea3e92a11f8b9a566ead01efe8393c35d9c6516c [file] [log] [blame] [view] [edit]
# decodeUint16 method
int decodeUint16
(int offset)
## Implementation
```dart
int decodeUint16(int offset) => data.getUint16(offset, Endian.little);
```