blob: ce842c50f74ae595638438f6dbea49d3db28ad69 [file] [log] [blame] [view]
# decodeInt64 method
int decodeInt64
(int offset)
## Implementation
```dart
int decodeInt64(int offset) => data.getInt64(offset, Endian.little);
```