CreateAuthorizerResponse.fromJson constructor
Implementation
factory CreateAuthorizerResponse.fromJson(Map<String, dynamic> json) {
return CreateAuthorizerResponse(
authorizerArn: json['authorizerArn'] as String?,
authorizerName: json['authorizerName'] as String?,
);
}