DescribeSolutionResponse.fromJson constructor

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

Implementation

factory DescribeSolutionResponse.fromJson(Map<String, dynamic> json) {
  return DescribeSolutionResponse(
    solution: json['solution'] != null
        ? Solution.fromJson(json['solution'] as Map<String, dynamic>)
        : null,
  );
}