blob: 46bc5d6947a62b92d924adc3b8e6820152aa6595 [file] [log] [blame] [view]
# decodeUint32 method
int decodeUint32
(int offset)
## Implementation
```dart
int decodeUint32(int offset) => data.getUint32(offset, Endian.little);
```