PayloadDiff constructor

const PayloadDiff({
  1. required String path,
  2. required Object? rawValue,
  3. required Object? normalizedValue,
  4. bool hasRawValue = true,
  5. bool hasNormalizedValue = true,
  6. int maxInlineLength = 56,
})

Implementation

const PayloadDiff({
  required this.path,
  required this.rawValue,
  required this.normalizedValue,
  this.hasRawValue = true,
  this.hasNormalizedValue = true,
  this.maxInlineLength = 56,
});