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