copyWithWrapped method

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

Implementation

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