copyWith method

Input$UpdateOrganizationAllowPrivateRepositoryForkingSettingInput copyWith({
  1. String? clientMutationId()?,
  2. bool? forkingEnabled,
  3. String? organizationId,
})

Implementation

Input$UpdateOrganizationAllowPrivateRepositoryForkingSettingInput copyWith(
        {String? Function()? clientMutationId,
        bool? forkingEnabled,
        String? organizationId}) =>
    Input$UpdateOrganizationAllowPrivateRepositoryForkingSettingInput(
        clientMutationId: clientMutationId == null
            ? this.clientMutationId
            : clientMutationId(),
        forkingEnabled:
            forkingEnabled == null ? this.forkingEnabled : forkingEnabled,
        organizationId:
            organizationId == null ? this.organizationId : organizationId);