blob: 5cee2bf2b5c1bc246d7183ee88bf5d0a31d842ce [file] [log] [blame] [view]
# encodeInt32 method
void encodeInt32
(int value, int offset)
## Implementation
```dart
void encodeInt32(int value, int offset) {
_checkRange(value, -2147483648, 2147483647);
data.setInt32(offset, value, Endian.little);
}
```