Dart 语法大集合

dart 学习语法日志

1.构造函数:

规则:类名({})
实例:MyAppBar({this.title});

2.成员变量:

规则: final 类型 变量
实例: final Widget title;

猜你喜欢

转载自blog.51cto.com/13601957/2396865