toArray method
Map<String, Object?>
toArray({
- ValueCodecRegistry? registry,
- bool includeHidden = false,
inherited
Converts the model into a metadata-aware map, honoring hidden/visible lists.
Implementation
Map<String, Object?> toArray({
ValueCodecRegistry? registry,
bool includeHidden = false,
}) => _asAttributes.serializableAttributes(
includeHidden: includeHidden,
registry: _effectiveCodecRegistry(registry),
);