DescribeAlgorithmResponse.fromJson constructor

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

Implementation

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