copyWith method

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

Implementation

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