get()
Returns the `ValidationError` instance of the given unique identification
Last updated
// Example usage.
import { ValidationErrors } from '@angular-package/error';
// Define validation errors.
const validationErrors = new ValidationErrors(
'(VE: 4332)',
'(VE: 4331)',
'(VE: 4330)'
);
// Set the `ValidationError` objects under the given identification numbers.
validationErrors
.set('Age is 99', 'Age must be', '(VE: 4330)')
.set('Detected numbers', 'Provide only letters', '(VE: 4331)');
// Returns ValidationError: Problem(VE: 4330): Age is 99 => Fix: Age must be
validationErrors.get('(VE: 4330)');