ChargeDisputeFundsWithdrawnEvent.fromJson constructor

ChargeDisputeFundsWithdrawnEvent.fromJson(
  1. Object? json
)

Implementation

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