blob: 8498ba1f7b5846777359186b5ec6f9bb43e6b8dc [file] [log] [blame] [view]
# encodeUint64 method
void encodeUint64
(int value, int offset)
## Implementation
```dart
void encodeUint64(int value, int offset) {
data.setUint64(offset, value, Endian.little);
}
```