toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final behavioralTrustVerdict = this.behavioralTrustVerdict;
final cardTestingVerdict = this.cardTestingVerdict;
final riskReasons = this.riskReasons;
final stolenInstrumentVerdict = this.stolenInstrumentVerdict;
final transactionRisk = this.transactionRisk;
return {
'behavioralTrustVerdict': ?behavioralTrustVerdict,
'cardTestingVerdict': ?cardTestingVerdict,
'riskReasons': ?riskReasons,
'stolenInstrumentVerdict': ?stolenInstrumentVerdict,
'transactionRisk': ?transactionRisk,
};
}