ValidationResult constructor

ValidationResult({
  1. String? message = "",
  2. String? property = "",
  3. String? keyword = "",
  4. String? dataPath = "",
  5. String? schemaPath = "",
  6. Map<String, dynamic> params = const {},
})

Implementation

ValidationResult({
  this.message = "",
  this.property = "",
  this.keyword = "",
  this.dataPath = "",
  this.schemaPath = "",
  this.params = const {},
}) : super();