IssuingDisputeClosedEvent.fromJson constructor

IssuingDisputeClosedEvent.fromJson(
  1. Object? json
)

Implementation

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