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