onTrustTokenOperationDone property

Stream<TrustTokenOperationDoneEvent> get onTrustTokenOperationDone

Fired exactly once for each Trust Token operation. Depending on the type of the operation and whether the operation succeeded or failed, the event is fired before the corresponding request was sent or after the response was received.

Implementation

Stream<TrustTokenOperationDoneEvent> get onTrustTokenOperationDone => _client
    .onEvent
    .where((event) => event.name == 'Network.trustTokenOperationDone')
    .map((event) => TrustTokenOperationDoneEvent.fromJson(event.parameters));