peekRight method

  1. @override
T? peekRight()
override

Implementation

@override
T? peekRight() => isEmpty ? null : _list.last;