mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 12:09:43 +00:00
13 lines
441 B
Dart
13 lines
441 B
Dart
|
import 'package:cake_wallet/core/validator.dart';
|
||
|
import 'package:cake_wallet/generated/i18n.dart';
|
||
|
import 'package:cake_wallet/src/domain/common/wallet_type.dart';
|
||
|
|
||
|
class AddressLabelValidator extends TextValidator {
|
||
|
AddressLabelValidator({WalletType type})
|
||
|
: super(
|
||
|
errorMessage: S.current.error_text_subaddress_name,
|
||
|
pattern: '''^[^`,'"]{1,20}\$''',
|
||
|
minLength: 1,
|
||
|
maxLength: 20);
|
||
|
}
|