RazorpayProcessPaymentResponse constructor

  1. @JsonSerializable(includeIfNull: false)
const RazorpayProcessPaymentResponse({
  1. required String token_number,
  2. required String cryptogram_value,
  3. required String cvv,
  4. required int token_expiry_month,
  5. required int token_expiry_year,
  6. required RazorpayProcessPaymentCardDetails card,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory RazorpayProcessPaymentResponse({
  required String token_number,
  required String cryptogram_value,
  required String cvv,
  required int token_expiry_month,
  required int token_expiry_year,
  required RazorpayProcessPaymentCardDetails card,
}) = _RazorpayProcessPaymentResponse;