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