@protected 在飞镖中是什么意思
what does @protected mean in dart
正如开发文档所说,Dart doesn't have the keywords public , protected , and private . If an identifier starts with an underscore (_), it's private to its library.
但是我在 Flutter 框架中发现了很多 @protected
关键字。 @protected
是什么意思?
abstract class InheritedWidget extends ProxyWidget {
const InheritedWidget({ Key key, Widget child })
: super(key: key, child: child);
@override
InheritedElement createElement() => InheritedElement(this);
@protected
bool updateShouldNotify(covariant InheritedWidget oldWidget);
}
它用于在 Dart 分析器在子类之外使用成员时提供提示。
您可以找到问题 here。
正如开发文档所说,Dart doesn't have the keywords public , protected , and private . If an identifier starts with an underscore (_), it's private to its library.
但是我在 Flutter 框架中发现了很多 @protected
关键字。 @protected
是什么意思?
abstract class InheritedWidget extends ProxyWidget {
const InheritedWidget({ Key key, Widget child })
: super(key: key, child: child);
@override
InheritedElement createElement() => InheritedElement(this);
@protected
bool updateShouldNotify(covariant InheritedWidget oldWidget);
}
它用于在 Dart 分析器在子类之外使用成员时提供提示。
您可以找到问题 here。