FacioDateField constructor

const FacioDateField({
  1. Key? key,
  2. required TextEditingController controller,
  3. required void onChanged(
    1. String
    ),
  4. int? maxLength,
  5. bool autofocus = false,
  6. FocusNode? focusNode,
})

Implementation

const FacioDateField({
  final Key? key,
  required final TextEditingController controller,
  required final void Function(String) onChanged,
  final int? maxLength,
  final bool autofocus = false,
  final FocusNode? focusNode,
})  : _key = key,
      _autofocus = autofocus,
      _controller = controller,
      _focusNode = focusNode,
      _maxLength = maxLength,
      _onChanged = onChanged,
      super();