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