DescribeProjectResponse.fromJson constructor

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

Implementation

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