constructor({ id = 0, name = '', lastName = '', eyeColor = '', age = 0 } = {}) { this.id = id; this.name = name; this.lastName = lastName; this.eyeColor = eyeColor; this.age = age; }