ValidasiTransformationResult<I, O>.error constructor
Implementation
factory ValidasiTransformationResult.error(Object error, {String? message}) {
return ValidasiTransformationResult<I, O>(
isValid: false,
error: error,
message: message,
);
}