DescribeProjectResult.fromJson constructor

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

Implementation

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