handle method
Implementation
@override
Future<T> handle(Context context, data) async {
try {
await schema.handle(context, data);
} catch (_) {
return data;
}
throw OvOException(
code: #not,
message: message ?? 'Schema must be invalid',
);
}