list method Null safety

  1. @override
List<JobInfo> list()

get the list of job info of the queue

this list still remain after the queue finished call clear would clear this history, also stop the queue if it's still running

Implementation

@override
List<JobInfo> list() {
  return _map.values.toList();
}