blob: f6055f9b6d63bb85a87d19c45ffcd5bb34dad5cd [file] [log] [blame] [view]
# encodeInt8 method
void encodeInt8
(int value, int offset)
## Implementation
```dart
void encodeInt8(int value, int offset) {
_checkRange(value, -128, 127);
data.setInt8(offset, value);
}
```