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.