copyWith method
Implementation
Input$DeleteBranchProtectionRuleInput copyWith(
{String? branchProtectionRuleId,
String? Function()? clientMutationId}) =>
Input$DeleteBranchProtectionRuleInput(
branchProtectionRuleId: branchProtectionRuleId == null
? this.branchProtectionRuleId
: branchProtectionRuleId,
clientMutationId: clientMutationId == null
? this.clientMutationId
: clientMutationId());