RadarEarlyFraudWarning constructor

const RadarEarlyFraudWarning({
  1. required bool actionable,
  2. required ChargeOrId charge,
  3. required DateTime created,
  4. required String fraudType,
  5. required String id,
  6. required bool livemode,
  7. PaymentIntentOrId? paymentIntent,
})

RadarEarlyFraudWarning

An early fraud warning indicates that the card issuer has notified us that a charge may be fraudulent. Related guide: [Early fraud warnings](https://stripe.com/docs/disputes/measuring#early-fraud-warnings)

Implementation

const RadarEarlyFraudWarning({
  required this.actionable,
  required this.charge,
  required this.created,
  required this.fraudType,
  required this.id,
  required this.livemode,
  this.paymentIntent,
});