onComplete property

Stream<InquiryComplete> onComplete

Called on a completed inquiry.

  • inquiryId a unique Persona-generated identifier for the inquiry
  • status result from the Inquiry flow
  • fields fields data extracted from the Inquiry flow

Implementation

static Stream<InquiryComplete> get onComplete =>
    _platform.onEvent.where((event) => event is InquiryComplete).cast();