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