ChargeDisputeUpdatedEvent.fromJson constructor

ChargeDisputeUpdatedEvent.fromJson(
  1. Object? json
)

Implementation

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