InputMonth constructor
const
InputMonth({
- String? autoComplete,
- String? list,
- String? max,
- String? min,
- bool? readOnly,
- bool? required,
- String? step,
- String? name,
- bool? disabled,
- String? form,
- String? inputMode,
- int? tabIndex,
- String? value,
- Key? key,
- NullableElementCallback? ref,
- String? id,
- String? title,
- String? style,
- String? className,
- String? innerText,
- Widget? child,
- List<
Widget> ? children, - EventCallback? onClick,
- Map<
String, String> ? additionalAttributes,
Implementation
const InputMonth({
String? autoComplete,
String? list,
String? max,
String? min,
bool? readOnly,
bool? required,
String? step,
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,
Map<String, String>? additionalAttributes,
}) : super(
autoComplete: autoComplete,
list: list,
max: max,
min: min,
readOnly: readOnly,
required: required,
step: step,
name: name,
form: form,
valueProperty: value,
tabIndex: tabIndex,
disabled: disabled,
inputMode: inputMode,
type: InputType.month,
key: key,
ref: ref,
id: id,
title: title,
style: style,
className: className,
hidden: hidden,
innerText: innerText,
child: child,
children: children,
onClick: onClick,
additionalAttributes: additionalAttributes,
);