onExit property

Stream<LinkExit> onExit

A broadcast stream for LinkExit from the native platform

  • error The error code. (can be null)
  • metadata An LinkExitMetadata object containing information about the last error encountered by the user (if any), institution selected by the user, and the most recent API request ID, and the Link session ID. /// For more information see https://plaid.com/docs/link/ios/#onexit

Implementation

static Stream<LinkExit> get onExit =>
    _platform.onObject.where((event) => event is LinkExit).cast();