message property
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 end with "$string"';
Holds the error message of the validation in case of single value validation.
Implementation
String? message;