InputEmail constructor

const InputEmail({
  1. String? autoComplete,
  2. String? list,
  3. int? maxLength,
  4. int? minLength,
  5. bool? multiple,
  6. String? pattern,
  7. String? placeholder,
  8. bool? readOnly,
  9. bool? required,
  10. String? size,
  11. String? name,
  12. bool? disabled,
  13. String? form,
  14. String? inputMode,
  15. int? tabIndex,
  16. String? value,
  17. Key? key,
  18. NullableElementCallback? ref,
  19. String? id,
  20. String? title,
  21. String? style,
  22. String? className,
  23. bool? hidden,
  24. String? innerText,
  25. Widget? child,
  26. List<Widget>? children,
  27. EventCallback? onClick,
  28. EventCallback? onInput,
  29. EventCallback? onChange,
  30. EventCallback? onKeyUp,
  31. EventCallback? onKeyDown,
  32. EventCallback? onKeyPress,
  33. Map<String, String>? additionalAttributes,
})

Implementation

const InputEmail({
  String? autoComplete,
  String? list,
  int? maxLength,
  int? minLength,
  bool? multiple,
  String? pattern,
  String? placeholder,
  bool? readOnly,
  bool? required,
  String? size,
  String? name,
  bool? disabled,
  String? form,
  String? inputMode,
  int? tabIndex,
  String? value,
  Key? key,
  NullableElementCallback? ref,
  String? id,
  String? title,
  String? style,
  String? className,
  bool? hidden,
  String? innerText,
  Widget? child,
  List<Widget>? children,
  EventCallback? onClick,
  EventCallback? onInput,
  EventCallback? onChange,
  EventCallback? onKeyUp,
  EventCallback? onKeyDown,
  EventCallback? onKeyPress,
  Map<String, String>? additionalAttributes,
}) : super(
        autoComplete: autoComplete,
        list: list,
        maxLength: maxLength,
        minLength: minLength,
        multiple: multiple,
        pattern: pattern,
        placeholder: placeholder,
        readOnly: readOnly,
        required: required,
        size: size,
        name: name,
        form: form,
        valueProperty: value,
        tabIndex: tabIndex,
        disabled: disabled,
        inputMode: inputMode,
        type: InputType.email,
        key: key,
        ref: ref,
        id: id,
        title: title,
        style: style,
        className: className,
        hidden: hidden,
        innerText: innerText,
        child: child,
        children: children,
        onClick: onClick,
        onInput: onInput,
        onChange: onChange,
        onKeyUp: onKeyUp,
        onKeyDown: onKeyDown,
        onKeyPress: onKeyPress,
        additionalAttributes: additionalAttributes,
      );