InputTelephone constructor

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

Implementation

const InputTelephone({
  String? autoComplete,
  String? list,
  int? maxLength,
  int? minLength,
  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,
        pattern: pattern,
        placeholder: placeholder,
        readOnly: readOnly,
        required: required,
        size: size,
        name: name,
        form: form,
        valueProperty: value,
        tabIndex: tabIndex,
        disabled: disabled,
        inputMode: inputMode,
        type: InputType.telephone,
        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,
      );