DateExpression constructor

const DateExpression(
  1. String value, {
  2. required DateCreator dateProducer,
  3. String? subtitle,
  4. String? selection,
  5. String? title,
  6. String? iconName,
})

Implementation

const DateExpression(
  String value, {
  required this.dateProducer,
  this.subtitle,
  this.selection,
  this.title,
  this.iconName,
}) : super(value);