IssuingDisputeOrId.fromJson constructor
      
      IssuingDisputeOrId.fromJson(
    
    
- Object? json
 
Implementation
factory IssuingDisputeOrId.fromJson(Object? json) {
  if (json is String) {
    return IssuingDisputeId(id: json);
  }
  return IssuingDispute.fromJson(json);
}