isFull method

  1. @override
bool isFull()
override

True - is current capacity is greater than or equal to defined capacity. False - otherwise @returns - boolean value indicating whether buffer is full or not.

Implementation

@override
bool isFull() => _bytesBuilder.length >= capacity!;