Control.time constructor

Control.time({
  1. required String key,
  2. String? title,
  3. String? description,
  4. void onChange(
    1. dynamic
    )?,
  5. TimeOfDay? value,
  6. Widget? prefixIcon,
})

Implementation

factory Control.time({
  required String key,
  String? title,
  String? description,
  void Function(dynamic)? onChange,
  TimeOfDay? value,
  Widget? prefixIcon,
}) =>
    Control(
      key: key,
      type: ControlType.time,
      title: title,
      description: description,
      onChange: onChange,
      value: value ?? TimeOfDay.now(),
      prefixIcon: prefixIcon,
    );