IssuingDisputeCreatedEvent.fromJson constructor

IssuingDisputeCreatedEvent.fromJson(
  1. Object? json
)

Implementation

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