copyWith method

Input$DeleteRefInput copyWith({
  1. String? clientMutationId()?,
  2. String? refId,
})

Implementation

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