copyWith method

Input$UnfollowUserInput copyWith({
  1. String? clientMutationId()?,
  2. String? userId,
})

Implementation

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