ParseValue<T> constructor

const ParseValue<T>({
  1. String? key,
  2. bool raw = false,
  3. T? defaultValue,
  4. ParseIgnore ignore = ParseIgnore.none,
  5. dynamic keyConverter,
  6. dynamic converter,
  7. dynamic entryConverter,
  8. dynamic fromConverter,
  9. dynamic toConverter,
})

Implementation

const ParseValue({
  this.key,
  this.raw = false,
  this.defaultValue,
  this.ignore = ParseIgnore.none,
  this.keyConverter,
  this.converter,
  this.entryConverter,
  this.fromConverter,
  this.toConverter,
});