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