AbclWebViewScreen constructor

const AbclWebViewScreen({
  1. Key? key,
  2. required String url,
  3. void onCompleted(
    1. String kycId
    )?,
  4. VoidCallback? onActionPressed,
  5. String? actionText,
  6. String title = 'Document',
})

Implementation

const AbclWebViewScreen({
  super.key,
  required this.url,
  this.onCompleted,
  this.onActionPressed,
  this.actionText,
  this.title = 'Document',
});