getAllIds method

List<String> getAllIds()

Implementation

List<String> getAllIds() {
  List<String> result = [];
  fsQueue.forEach((element) {
    result.add(element.id);
  });
  return result;
}