创建一个类
可以按如下方式创建类:
class InputField {
int maxLength;
String name;
}
可以使用 new
关键字对类进行实例化,之后默认情况下字段值将为 null。
var field = new InputField();
然后可以访问字段值:
// this will trigger the setter
field.name = "fieldname";
// this will trigger the getter
print(field.name);