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