DescribeSolutionVersionResponse.fromJson constructor
Implementation
factory DescribeSolutionVersionResponse.fromJson(Map<String, dynamic> json) {
return DescribeSolutionVersionResponse(
solutionVersion: json['solutionVersion'] != null
? SolutionVersion.fromJson(
json['solutionVersion'] as Map<String, dynamic>)
: null,
);
}