var customer1 = Customer.empty(); print(customer1); // Customer [name=,age=0,location=] var customer2 = Customer.withoutLocation("zkoder", 26); print(customer2); // Customer [name=zkoder,age=26,location=]