DescribeUserPoolClientResponse.fromJson constructor

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

Implementation

factory DescribeUserPoolClientResponse.fromJson(Map<String, dynamic> json) {
  return DescribeUserPoolClientResponse(
    userPoolClient: json['UserPoolClient'] != null
        ? UserPoolClientType.fromJson(
            json['UserPoolClient'] as Map<String, dynamic>)
        : null,
  );
}