IssuingDisputeNotReceivedEvidence.fromJson constructor

IssuingDisputeNotReceivedEvidence.fromJson(
  1. Object? json
)

Implementation

factory IssuingDisputeNotReceivedEvidence.fromJson(Object? json) {
  final map = (json as Map).cast<String, Object?>();
  return IssuingDisputeNotReceivedEvidence(
    additionalDocumentation: map['additional_documentation'] == null
        ? null
        : FileOrId.fromJson(map['additional_documentation']),
    expectedAt: map['expected_at'] == null
        ? null
        : DateTime.fromMillisecondsSinceEpoch(
            (map['expected_at'] as int).toInt()),
    explanation:
        map['explanation'] == null ? null : (map['explanation'] as String),
    productDescription: map['product_description'] == null
        ? null
        : (map['product_description'] as String),
    productType: map['product_type'] == null
        ? null
        : IssuingDisputeCanceledEvidenceProductType.fromJson(
            map['product_type']),
  );
}