toDomainAll method Null safety
- List<
Entity> entities
override
By default converting one by one into a new list using the single toDomain(entity) converter.
Implementation
@override
List<Domain> toDomainAll(List<Entity> entities) =>
entities.map((entity) => this.toDomain(entity)).toList();