copyWith method

Input$MarkFileAsViewedInput copyWith({
  1. String? clientMutationId()?,
  2. String? path,
  3. String? pullRequestId,
})

Implementation

Input$MarkFileAsViewedInput copyWith(
        {String? Function()? clientMutationId,
        String? path,
        String? pullRequestId}) =>
    Input$MarkFileAsViewedInput(
        clientMutationId: clientMutationId == null
            ? this.clientMutationId
            : clientMutationId(),
        path: path == null ? this.path : path,
        pullRequestId:
            pullRequestId == null ? this.pullRequestId : pullRequestId);