IssuingDisputeUpdatedEvent.fromJson constructor

IssuingDisputeUpdatedEvent.fromJson(
  1. Object? json
)

Implementation

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