MessagePackEncodeOptions constructor

MessagePackEncodeOptions({
  1. dynamic toEncodable(
    1. dynamic
    ) = _defaultToEncodable,
  2. int maxDepth = DEFAULT_MAX_DEPTH,
  3. int initialSize = DEFAULT_INITIAL_SIZE,
  4. bool sortKeys = false,
  5. bool forceFloat32 = false,
  6. bool forceIntegerToFloat = false,
})

Implementation

MessagePackEncodeOptions({
  this.toEncodable = _defaultToEncodable,
  this.maxDepth = DEFAULT_MAX_DEPTH,
  this.initialSize = DEFAULT_INITIAL_SIZE,
  this.sortKeys = false,
  this.forceFloat32 = false,
  this.forceIntegerToFloat = false,
});