Dart - 标记为弃用文档

Dart - Mark as Deprecated Documentation

我更改了我的实现中的一些内容,我想将一些 class 标记为已弃用,以便他们将改用新的实现。

如何在 dart 中将 class 标记为弃用?现在我只将它记录为已弃用,而没有实际标记 class 或将其划掉。

/// Throws a BadRequestException - 400
class BadRequestException implements Exception {}
/// Throws a NotFoundException - 404
class NotFoundException implements Exception {}
/// Throws a ConflictException - 409
class ConflictException implements Exception {}
/// [DEPRECATED]
/// Don't use this anymore, this is deprecated.
class AlreadyExistsException implements Exception {}

找到了。 Deprecated Classes

@Deprecated('Use [ConflictException]')
class AlreadyExistsException implements Exception {}