copyWithWrapped method

DependentUnknownAgentToolIdentifier copyWithWrapped({
  1. Wrapped<String?>? type,
})

Implementation

DependentUnknownAgentToolIdentifier copyWithWrapped(
    {Wrapped<String?>? type}) {
  return DependentUnknownAgentToolIdentifier(
      type: (type != null ? type.value : this.type));
}