validateWithParent method
override
Implementation
@override
FutureOr<Result> validateWithParent(
dynamic value,
Map<String, dynamic> map, {
bool exists = true,
}) async {
final res = await inner.validateWithParent(value, map, exists: exists);
if (res.isValid) return res;
return _failWithMsg(value, message);
}