copyWith method

PaymentIntentCard copyWith({
  1. String? requestThreedSecure,
})

Implementation

PaymentIntentCard copyWith({
  String? requestThreedSecure,
}) {
  return PaymentIntentCard(
    requestThreedSecure: requestThreedSecure ?? this.requestThreedSecure,
  );
}