popRight method

  1. @override
T? popRight()
override

Implementation

@override
T? popRight() => isEmpty ? null : _list.removeLast();