getHttpInteraction method

HttpInteraction? getHttpInteraction(
  1. int id
)

Returns the corresponding HttpInteraction to this id.

To modify the HttpInteraction, use these:

Implementation

HttpInteraction? getHttpInteraction(int id) {
  return entries.firstWhereOrNull((element) => element.id == id);
}