ValidationWarning constructor

const ValidationWarning({
  1. required String message,
  2. String? field,
  3. required ValidationWarningType type,
})

Creates a new ValidationWarning instance.

Implementation

const ValidationWarning({
  required this.message,
  this.field,
  required this.type,
});