copyWith method

Input$AddStarInput copyWith({
  1. String? clientMutationId()?,
  2. String? starrableId,
})

Implementation

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