MapperContainerBase constructor

MapperContainerBase({
  1. Set<MapperBase>? mappers,
  2. Set<MapperContainer>? linked,
  3. Map<String, Function>? types,
})

Implementation

factory MapperContainerBase({
  Set<MapperBase>? mappers,
  Set<MapperContainer>? linked,
  Map<String, Function>? types,
}) {
  return MapperContainerBase._(
    mappers ?? {},
    {...?linked, MapperContainer.defaults},
    types ?? {},
  );
}