Flutter 源码
class Colors { // This class is not meant to be instantiated or extended; this constructor // prevents instantiation and extension. Colors._(); ... }
flutter使用类名._()
形式来阻止类被实例化或者被继承
class Colors { // This class is not meant to be instantiated or extended; this constructor // prevents instantiation and extension. Colors._(); ... }
flutter使用类名._()
形式来阻止类被实例化或者被继承