Review constructor

const Review({
  1. String? billingZip,
  2. ChargeOrId? charge,
  3. ReviewClosedReason? closedReason,
  4. required DateTime created,
  5. required String id,
  6. String? ipAddress,
  7. RadarReviewResourceLocation? ipAddressLocation,
  8. required bool livemode,
  9. required bool open,
  10. required ReviewOpenedReason openedReason,
  11. PaymentIntentOrId? paymentIntent,
  12. required String reason,
  13. RadarReviewResourceSession? session,
})

RadarReview

Reviews can be used to supplement automated fraud detection with human expertise. Learn more about [Radar](/radar) and reviewing payments [here](https://stripe.com/docs/radar/reviews).

Implementation

const Review({
  this.billingZip,
  this.charge,
  this.closedReason,
  required this.created,
  required this.id,
  this.ipAddress,
  this.ipAddressLocation,
  required this.livemode,
  required this.open,
  required this.openedReason,
  this.paymentIntent,
  required this.reason,
  this.session,
});