MapList2List constructor
MapList2List({
- required Mapper mapper,
- required Type sourceType,
- required Type targetType,
- required MapperProperty property,
- required Function factory,
Implementation
MapList2List({required this.mapper, required this.sourceType, required this.targetType, required this.property, required this.factory}) {
// check if polymorphic
if ( TypeDescriptor.hasType(sourceType)) {
polymorphic = TypeDescriptor.forType(sourceType).childClasses.isNotEmpty;
}
}