toJson method

Map<String, dynamic> toJson()

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,
  };
}