ChargeDisputeFundsWithdrawnEvent.fromJson constructor
ChargeDisputeFundsWithdrawnEvent.fromJson(
- Object? json
Implementation
factory ChargeDisputeFundsWithdrawnEvent.fromJson(Object? json) {
final map = (json as Map).cast<String, Object?>();
return ChargeDisputeFundsWithdrawnEvent(
object: Dispute.fromJson(map['object']));
}