copyWith method

Input$DeleteBranchProtectionRuleInput copyWith({
  1. String? branchProtectionRuleId,
  2. String? clientMutationId()?,
})

Implementation

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