ObjectMapper constructor

ObjectMapper({
  1. NamingStrategy? namingStrategy,
  2. bool prettyPrint = true,
})

Implementation

ObjectMapper({
  NamingStrategy? namingStrategy,
  this.prettyPrint = true,
}) {
  this.namingStrategy = namingStrategy ?? NamingStrategies.basic;
}