getPending method

List<PendingAsyncHook> getPending()

Implementation

List<PendingAsyncHook> getPending() {
  return _pendingHooks.values
      .where((h) => !h.responseAttachmentSent)
      .toList();
}