handleSessionRequest property

  1. @override
Stream<Session> get handleSessionRequest
override

Listen to this event emitter to override the default session acceptance prompt. The session passed to this method will be in the SessionState.authorizing state, when you have gained confirmation from the user, you should call either Session.activate or Session.end to approve or reject the session.

Implementation

@override
Stream<Session> get handleSessionRequest =>
    _handleSessionRequestController.stream;