peekLeft method

  1. @override
T? peekLeft()
override

Implementation

@override
T? peekLeft() => isEmpty ? null : _list.first;