Control.time constructor
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,
);