ProductionCSIDFailureData.fromJson constructor

ProductionCSIDFailureData.fromJson(
  1. Map<String, dynamic> json
)

Constructs the model from a JSON map.

Implementation

factory ProductionCSIDFailureData.fromJson(Map<String, dynamic> json) {
  return ProductionCSIDFailureData(
    code: json['code'],
    message: json['message'],
  );
}