copyWith method

Input$UpdateRefsInput copyWith({
  1. String? clientMutationId()?,
  2. List<Input$RefUpdate>? refUpdates,
  3. String? repositoryId,
})

Implementation

Input$UpdateRefsInput copyWith(
        {String? Function()? clientMutationId,
        List<Input$RefUpdate>? refUpdates,
        String? repositoryId}) =>
    Input$UpdateRefsInput(
        clientMutationId: clientMutationId == null
            ? this.clientMutationId
            : clientMutationId(),
        refUpdates: refUpdates == null ? this.refUpdates : refUpdates,
        repositoryId:
            repositoryId == null ? this.repositoryId : repositoryId);