copyWith method
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);