Dart 编写Api弃用警告

例如body2在以后的版本将被bodyText1代替

@Deprecated(
    'This is the term used in the 2014 version of material design. The modern term is bodyText1. '
    'This feature was deprecated after v1.13.8.'
  )
  TextStyle get body2 => bodyText1;

用户使用body2将收到以下错误

'body2' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term is bodyText1. This feature was deprecated after v1.13.8..
Try replacing the use of the deprecated member with the replacement.

相关推荐