blob: 561150509da1664ceb3c7af64a04504bfe0f3cdd [file] [log] [blame] [view]
# decodeInt32 method
int decodeInt32
(int offset)
## Implementation
```dart
int decodeInt32(int offset) => data.getInt32(offset, Endian.little);
```