fill method
Mass assigns attributes, honoring fillable/guarded metadata.
Implementation
Model<TModel> fill(
Map<String, Object?> attributes, {
bool strict = false,
ValueCodecRegistry? registry,
}) {
_asAttributes.fillAttributes(
attributes,
strict: strict,
registry: _effectiveCodecRegistry(registry),
);
return _self();
}