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