start static method

Future<void> start({
  1. required InquiryConfiguration configuration,
})

This starts the Inquiry flow and takes control of the user interface. Once the flow completes, the control of the user interface is returned to the app and the appropriate callbacks are called.

Implementation

static Future<void> start(
    {required InquiryConfiguration configuration}) async {
  return _platform.start(configuration: configuration);
}