mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 18:07:44 +00:00
12 lines
No EOL
343 B
Dart
12 lines
No EOL
343 B
Dart
import 'package:cake_wallet/core/validator.dart';
|
|
import 'package:cake_wallet/generated/i18n.dart';
|
|
|
|
class TemplateValidator extends TextValidator {
|
|
TemplateValidator()
|
|
: super(
|
|
minLength: 0,
|
|
maxLength: 0,
|
|
pattern: '''^[^`,'"]{1,20}\$''',
|
|
errorMessage: S.current.error_text_template
|
|
);
|
|
} |