CredentialsPayload constructor

CredentialsPayload({
  1. required String requestId,
  2. String? customerId,
  3. PredefinedAmount? predefinedAmount,
  4. Prefill? defaultUser,
  5. required String redirectUrl,
  6. bool? isWebView,
  7. bool? isiFrame,
  8. required TransactionType transactionType,
  9. UserFlow? userFlow,
})

Implementation

CredentialsPayload({
  required this.requestId,
  this.customerId,
  this.predefinedAmount,
  this.defaultUser,
  required this.redirectUrl,
  this.isWebView,
  this.isiFrame,
  required this.transactionType,
  this.userFlow,
});