atEndAndIsFull method
Return true if all writeCount have been read and there are no remaining unwrittenCount, false otherwise.
Implementation
bool atEndAndIsFull() => readCount == length;
Return true if all writeCount have been read and there are no remaining unwrittenCount, false otherwise.
bool atEndAndIsFull() => readCount == length;