copyWithWrapped method

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

Implementation

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