MapperRef<M> constructor

const MapperRef<M>({
  1. String? name,
  2. Type? type,
  3. M? instance,
  4. String? factoryName,
  5. Object? factoryConfigInstance,
})

Creates a mapper reference with optional injection configuration.

Implementation

const MapperRef({
  this.name,
  this.type,
  this.instance,
  this.factoryName,
  this.factoryConfigInstance,
});