Get flow with the given id from the store. Returns None if the flow is not found.
(self, flow_id: str)
| 523 | self.sig_view_add.send(flow=f) |
| 524 | |
| 525 | def get_by_id(self, flow_id: str) -> mitmproxy.flow.Flow | None: |
| 526 | """ |
| 527 | Get flow with the given id from the store. |
| 528 | Returns None if the flow is not found. |
| 529 | """ |
| 530 | return self._store.get(flow_id) |
| 531 | |
| 532 | # View Properties |
| 533 | @command.command("view.properties.length") |