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