ChargeOutcome constructor

const ChargeOutcome({
  1. String? networkStatus,
  2. String? reason,
  3. String? riskLevel,
  4. int? riskScore,
  5. RuleOrId? rule,
  6. String? sellerMessage,
  7. required String type,
})

Details about whether the payment was accepted, and why. See [understanding declines](https://stripe.com/docs/declines) for details.

Implementation

const ChargeOutcome({
  this.networkStatus,
  this.reason,
  this.riskLevel,
  this.riskScore,
  this.rule,
  this.sellerMessage,
  required this.type,
});