CustomTimeFormField constructor

const CustomTimeFormField({
  1. Key? key,
  2. TextEditingCController? controller,
  3. String? label,
  4. bool required = false,
  5. void onChange(
    1. TimeOfDay? time
    )?,
})

Implementation

const CustomTimeFormField({
  super.key,
  this.controller,
  this.label,
  this.required = false,
  this.onChange,
});