`FoxxModel#set(name, value)` Set the value of an attribute or multiple attributes at once @EXAMPLES ```js instance = new Model({ a: 1 }); instance.set("a", 2); instance.set({ b: 2 }); ```