mirror of
https://github.com/Iconica-Development/flutter_registration.git
synced 2025-05-18 21:23:43 +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;
|
|
}
|