Review constructor
const
Review({
- String? billingZip,
- ChargeOrId? charge,
- ReviewClosedReason? closedReason,
- required DateTime created,
- required String id,
- String? ipAddress,
- RadarReviewResourceLocation? ipAddressLocation,
- required bool livemode,
- required bool open,
- required ReviewOpenedReason openedReason,
- PaymentIntentOrId? paymentIntent,
- required String reason,
- 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,
});