WebView3DS constructor

const WebView3DS({
  1. Key? key,
  2. required void onFinished(
    1. Submit3DSAuthorizationResponse?
    ),
  3. required void onLoad(
    1. bool
    ),
  4. required TinkoffAcquiringConfig config,
  5. required bool is3DsVersion2,
  6. required String acsUrl,
  7. String? md,
  8. String? paReq,
  9. String? acsTransId,
  10. String? version,
  11. String? serverTransId,
})

Конструктор WebView для прохождения 3-D Secure

Implementation

const WebView3DS({
  Key? key,
  required this.onFinished,
  required this.onLoad,
  required this.config,
  required this.is3DsVersion2,
  required this.acsUrl,
  this.md,
  this.paReq,
  this.acsTransId,
  this.version,
  this.serverTransId,
}) : super(key: key);