ParseEntity constructor

const ParseEntity({
  1. String? from = 'Json',
  2. String? to = 'Json',
  3. String keyType = 'snake_case',
  4. bool copyWith = true,
  5. bool copyWithData = true,
})

Implementation

const ParseEntity({
  this.from = 'Json',
  this.to = 'Json',
  this.keyType = 'snake_case',
  this.copyWith = true,
  this.copyWithData = true,
});