TF-585 Fix identity restrict BCC field

This commit is contained in:
dab246
2022-05-26 12:09:14 +07:00
committed by Dat H. Pham
parent b4fda5e9aa
commit cd02444941
9 changed files with 259 additions and 25 deletions
@@ -5,6 +5,7 @@ abstract class VerifyNameException extends Equatable implements Exception {
static const emptyName = 'The name cannot be empty!';
static const duplicatedName = 'The name already exists!';
static const nameContainSpecialCharacter = 'The name cannot contain special characters';
static const emailAddressInvalid = 'The email address invalid';
final String? message;
@@ -28,6 +29,13 @@ class DuplicatedNameException extends VerifyNameException {
class SpecialCharacterException extends VerifyNameException {
const SpecialCharacterException() : super(VerifyNameException.nameContainSpecialCharacter);
@override
List<Object> get props => [];
}
class EmailAddressInvalidException extends VerifyNameException {
const EmailAddressInvalidException() : super(VerifyNameException.emailAddressInvalid);
@override
List<Object> get props => [];
}