SdkConfig constructor

SdkConfig({
  1. required String accessToken,
  2. String? baseUrl,
  3. String? language,
  4. bool? useNative = true,
  5. String? jwtSecretKey,
  6. String? jwtPublicKey,
  7. String? privacyPolicyUrl,
  8. String? clientCertificateBase64,
  9. String? clientCertificatePassword,
  10. bool? enableMutualSSL = false,
  11. ResultFormat resultFormat = ResultFormat.flat,
  12. UiConfig? uiConfig,
  13. CameraShape? cameraShape,
  14. String? logoImageBase64,
  15. String? clientCertificateAlias,
  16. String? bankId,
})

Implementation

SdkConfig({
  required this.accessToken,
  this.baseUrl,
  this.language,
  this.useNative = true,
  this.jwtSecretKey,
  this.jwtPublicKey,
  this.privacyPolicyUrl,
  this.clientCertificateBase64,
  this.clientCertificatePassword,
  this.enableMutualSSL = false,
  this.resultFormat = ResultFormat.flat,
  this.uiConfig,
  this.cameraShape,
  this.logoImageBase64,
  this.clientCertificateAlias,
  this.bankId,
});