Control.date constructor
Implementation
factory Control.date({
required String key,
String? title,
String? description,
void Function(dynamic)? onChange,
DateTime? value,
DateTime? min,
DateTime? max,
Widget? prefixIcon,
}) =>
Control(
key: key,
type: ControlType.date,
title: title,
description: description,
onChange: onChange,
value: <String, DateTime?>{
'selected': value ?? DateTime.now(),
'min': min ?? value ?? DateTime.now(),
'max': max ??
(min ?? value ?? DateTime.now()).add(
const Duration(days: 365),
),
},
prefixIcon: prefixIcon,
);