CardSettingsEmail constructor

CardSettingsEmail({
  1. Key? key,
  2. String label = 'Email',
  3. bool contentOnNewLine = false,
  4. double? labelWidth,
  5. TextAlign? labelAlign,
  6. TextAlign? contentAlign,
  7. String? initialValue,
  8. Icon? icon,
  9. Widget? requiredIndicator,
  10. int maxLength = 30,
  11. bool visible = true,
  12. bool enabled = true,
  13. bool autofocus = false,
  14. bool obscureText = false,
  15. bool autocorrect = false,
  16. AutovalidateMode autovalidateMode = AutovalidateMode.onUserInteraction,
  17. FormFieldValidator<String>? validator,
  18. FormFieldSetter<String>? onSaved,
  19. ValueChanged<String>? onChanged,
  20. TextEditingController? controller,
  21. FocusNode? focusNode,
  22. TextInputAction? inputAction,
  23. FocusNode? inputActionNode,
  24. TextInputType keyboardType = TextInputType.emailAddress,
  25. TextStyle? style,
  26. MaxLengthEnforcement? maxLengthEnforcement = MaxLengthEnforcement.enforced,
  27. ValueChanged<String>? onFieldSubmitted,
  28. List<TextInputFormatter>? inputFormatters,
  29. bool? showMaterialonIOS,
  30. EdgeInsetsGeometry? fieldPadding,
})

Implementation

CardSettingsEmail({
  Key? key,
  String label = 'Email',
  bool contentOnNewLine = false,
  double? labelWidth,
  TextAlign? labelAlign,
  TextAlign? contentAlign,
  String? initialValue,
  Icon? icon,
  Widget? requiredIndicator,
  int maxLength = 30,
  bool visible = true,
  bool enabled = true,
  bool autofocus = false,
  bool obscureText = false,
  bool autocorrect = false,
  AutovalidateMode autovalidateMode = AutovalidateMode.onUserInteraction,
  FormFieldValidator<String>? validator,
  FormFieldSetter<String>? onSaved,
  ValueChanged<String>? onChanged,
  TextEditingController? controller,
  FocusNode? focusNode,
  TextInputAction? inputAction,
  FocusNode? inputActionNode,
  TextInputType keyboardType = TextInputType.emailAddress,
  TextStyle? style,
  MaxLengthEnforcement? maxLengthEnforcement = MaxLengthEnforcement.enforced,
  ValueChanged<String>? onFieldSubmitted,
  List<TextInputFormatter>? inputFormatters,
  bool? showMaterialonIOS,
  EdgeInsetsGeometry? fieldPadding,
}) : super(
        key: key,
        label: label,
        labelWidth: labelWidth,
        labelAlign: labelAlign,
        showMaterialonIOS: showMaterialonIOS,
        fieldPadding: fieldPadding,
        contentAlign: contentAlign,
        contentOnNewLine: contentOnNewLine,
        initialValue: initialValue,
        maxLength: maxLength,
        icon: icon,
        requiredIndicator: requiredIndicator,
        visible: visible,
        enabled: enabled,
        autofocus: autofocus,
        obscureText: obscureText,
        autocorrect: autocorrect,
        autovalidateMode: autovalidateMode,
        validator: validator,
        onSaved: onSaved,
        onChanged: onChanged,
        controller: controller,
        focusNode: focusNode,
        inputAction: inputAction,
        inputActionNode: inputActionNode,
        keyboardType: keyboardType,
        style: style,
        maxLengthEnforcement: maxLengthEnforcement,
        onFieldSubmitted: onFieldSubmitted,
        inputFormatters: inputFormatters,
      );