Field.email constructor
Field.email(
- String key, {
- dynamic value,
- FormValidator? validate,
- bool autofocus = false,
- String? dummyData,
- Widget? header,
- TextStyle? titleStyle,
- dynamic style,
- Map<
String, NyTextField Function(NyTextField nyTextField)> ? metaData = const {}, - Widget? prefixIcon,
- bool clearable = false,
- Widget? clearIcon,
Field.email is a constructor that helps in managing password fields
Implementation
Field.email(
this.key, {
this.value,
this.validate,
this.autofocus = false,
this.dummyData,
this.header,
this.footer,
this.titleStyle,
this.style,
this.metaData = const {},
this.hidden = false,
Widget? prefixIcon,
bool clearable = false,
Widget? clearIcon,
}) : cast = FormCast.email(
prefixIcon: prefixIcon,
clearable: clearable,
clearIcon: clearIcon,
) {
if (style == null) return;
metaData = {};
if (style is String) {
style = style;
return;
}
if (style is Map) {
style as Map<String, dynamic>;
metaData!["decoration_style"] =
(style as Map<String, dynamic>).entries.first.value;
style = (style as Map<String, dynamic>).entries.first.key;
}
}