The code fragment to replace usages of the deprecated member with.
Setting this property instructs tools to automatically replace usages of the deprecated member.
For human instructions, use message.
Examples:
// replace usages of a deprecated class or type alias with `Inventory`
replaceWith = "Inventory"
// replace usages of a deprecated property or method with `inventory`
replaceWith = "inventory"
// replace usages of a deprecated property or method with `store.inventory`
// and an import of `store`, which must resolve to an import of the current module
replaceWith = "store.inventory"
// replace usages of a deprecated property or method with `order(42)`
replaceWith = "order(42)"
// replace usages of a deprecated method (that has a parameter named `amount`) with `order(amount)`
replaceWith = "order(amount)"
Indicates that the annotated member is deprecated and will likely be removed in the future.