DateTimeField constructor

const DateTimeField({
  1. Key? key,
  2. InputDecoration? decoration,
  3. void onChanged(
    1. DateTime
    )?,
  4. required DateEditingController controller,
})

Implementation

const DateTimeField({
  Key? key,
  this.decoration,
  this.onChanged,
  required this.controller,
}) : super(key: key);