WebviewScreen constructor

WebviewScreen({
  1. Key? key,
  2. required HttpProvider providerData,
  3. required String sessionId,
  4. required String context,
  5. required String privateKey,
  6. required String appId,
  7. required Map<String, String> parameters,
  8. required ComputeProofForWitnessCallback? computeProof,
  9. bool? debug = false,
  10. bool autoSubmit = false,
  11. bool showManualVerification = false,
})

Implementation

WebviewScreen(
    {super.key,
    required this.providerData,
    required this.sessionId,
    required this.context,
    required this.privateKey,
    required this.appId,
    required this.parameters,
    required this.computeProof,
    this.debug = false,
    this.autoSubmit = false,
    this.showManualVerification = false});