PropertyDifference constructor

PropertyDifference({
  1. required String actualValue,
  2. required DifferenceType differenceType,
  3. required String expectedValue,
  4. required String propertyPath,
})

Implementation

PropertyDifference({
  required this.actualValue,
  required this.differenceType,
  required this.expectedValue,
  required this.propertyPath,
});