DisputeNotReceived.fromJson constructor
DisputeNotReceived.fromJson(
- Object? json
Implementation
factory DisputeNotReceived.fromJson(Object? json) {
final map = (json as Map).cast<String, Object?>();
return DisputeNotReceived(
additionalDocumentation: map['additional_documentation'] == null
? null
: (map['additional_documentation'] as String),
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
: DisputeProductType.fromJson(map['product_type']),
);
}