copyWith method

Input$UpdateEnterpriseProfileInput copyWith({
  1. String? clientMutationId()?,
  2. String? description()?,
  3. String? enterpriseId,
  4. String? location()?,
  5. String? name()?,
  6. String? websiteUrl()?,
})

Implementation

Input$UpdateEnterpriseProfileInput copyWith(
        {String? Function()? clientMutationId,
        String? Function()? description,
        String? enterpriseId,
        String? Function()? location,
        String? Function()? name,
        String? Function()? websiteUrl}) =>
    Input$UpdateEnterpriseProfileInput(
        clientMutationId: clientMutationId == null
            ? this.clientMutationId
            : clientMutationId(),
        description: description == null ? this.description : description(),
        enterpriseId: enterpriseId == null ? this.enterpriseId : enterpriseId,
        location: location == null ? this.location : location(),
        name: name == null ? this.name : name(),
        websiteUrl: websiteUrl == null ? this.websiteUrl : websiteUrl());