DescribeProjectResponse.fromJson constructor
Implementation
factory DescribeProjectResponse.fromJson(Map<String, dynamic> json) {
return DescribeProjectResponse(
project:
ProjectDescription.fromJson(json['project'] as Map<String, dynamic>),
);
}