ThreeDSecureRequest constructor

const ThreeDSecureRequest({
  1. required String token,
  2. required String amount,
  3. required String nonce,
  4. required String? email,
})

Implementation

const ThreeDSecureRequest({
  required this.token,
  required this.amount,
  required this.nonce,
  required this.email,
});