addLast method

  1. @override
void addLast(
  1. E value
)

Adds value at the end of the queue.

Implementation

@override
void addLast(E value) {
  super.addLast(value);
  notifyListeners();
}