BringUpResult typedef

BringUpResult = ({SessionHeader header, DefaultLoopHost host})

Result returned by bringUpSession.

A named record (Dart 3 inline record) so callers can destructure:

final (:header, :host) = await bringUpSession(...);

Implementation

typedef BringUpResult = ({SessionHeader header, DefaultLoopHost host});