message property

  1. @override
String get message
override

Holds the error message of the validation in case of single value validation.

Implementation

@override
String get message =>
    customMessage ??
    customMessageFn?.call() ??
    '${fieldName ?? 'value'} does not pass custom validation';
set message (String? value)
inherited

Holds the error message of the validation in case of single value validation.

Implementation

String? message;