fill method

Model fill()

Implementation

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