mirror of
https://github.com/Iconica-Development/flutter_registration.git
synced 2025-05-19 13:23:45 +02:00
16 lines
304 B
Dart
16 lines
304 B
Dart
|
class AuthField {
|
||
|
AuthField({
|
||
|
required this.name,
|
||
|
required this.title,
|
||
|
this.obscureText = false,
|
||
|
this.validators = const [],
|
||
|
this.value = '',
|
||
|
});
|
||
|
|
||
|
final String name;
|
||
|
final String title;
|
||
|
final bool obscureText;
|
||
|
List<String? Function(String?)> validators;
|
||
|
String value;
|
||
|
}
|