blob: a0b1e7b91b6c65bcb73bf5eef9b16e012a0d85ba [file] [log] [blame] [view]
# countUnclaimedBytes method
int countUnclaimedBytes
()
## Implementation
```dart
int countUnclaimedBytes() {
return data.lengthInBytes - _nextOffset;
}
```