void main() { var janos = Employee('János'); print(janos.name); } class Employee { String name; Employee(this.name); }