ValidationWarning constructor
const
ValidationWarning({
- required String message,
- String? field,
- required ValidationWarningType type,
Creates a new ValidationWarning instance.
Implementation
const ValidationWarning({
required this.message,
this.field,
required this.type,
});