popLeft method

  1. @override
T? popLeft()
override

Implementation

@override
T? popLeft() => isEmpty ? null : _list.removeAt(0);