copyWith method

Input$UpdateProjectCardInput copyWith({
  1. String? clientMutationId()?,
  2. bool? isArchived()?,
  3. String? note()?,
  4. String? projectCardId,
})

Implementation

Input$UpdateProjectCardInput copyWith(
        {String? Function()? clientMutationId,
        bool? Function()? isArchived,
        String? Function()? note,
        String? projectCardId}) =>
    Input$UpdateProjectCardInput(
        clientMutationId: clientMutationId == null
            ? this.clientMutationId
            : clientMutationId(),
        isArchived: isArchived == null ? this.isArchived : isArchived(),
        note: note == null ? this.note : note(),
        projectCardId:
            projectCardId == null ? this.projectCardId : projectCardId);