fill method
Implementation
Model fill() {
for (var key in attributes.keys) {
if (fillable.contains(key) && !guarded.contains(key)) {
setAttribute(key, attributes[key]);
}
}
return this;
}
Model fill() {
for (var key in attributes.keys) {
if (fillable.contains(key) && !guarded.contains(key)) {
setAttribute(key, attributes[key]);
}
}
return this;
}