ObjectMap<TSrc, TDst> constructor

const ObjectMap<TSrc, TDst>({
  1. NameConvention? srcConvention,
  2. NameConvention? dstConvention,
  3. Map<String, String> renameFields = const {},
  4. bool reverse = true,
})

Implementation

const ObjectMap({
  this.srcConvention,
  this.dstConvention,
  this.renameFields = const {},
  this.reverse = true,
})  : srcType = TSrc,
      dstType = TDst;