ProductionCSIDFailureData.fromJson constructor
Constructs the model from a JSON map.
Implementation
factory ProductionCSIDFailureData.fromJson(Map<String, dynamic> json) {
return ProductionCSIDFailureData(
code: json['code'],
message: json['message'],
);
}