copyWith method

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

Implementation

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