DescribeNodegroupResponse.fromJson constructor

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

Implementation

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