class Company{ String name=''; Person ceo = new Person("ceo"); List workerList = []; Company(String this.name); void setCeo(Person ceo){ this.ceo = ceo; } void addWorker(Person worker){ this.workerList.add(worker); } void removeWorker(Person worker){ this.workerList.remove(worker); } void info(){ print('company : $name'); this.ceo.info(); this.workerList.forEach( (e){ print(e.name); }); for(int ..