DelegatingSmartDateQueryResult constructor
DelegatingSmartDateQueryResult(
- SmartDateQueryResult delegate, {
- String? title,
- List? subtitle,
- String? icon,
- String? selection,
Implementation
DelegatingSmartDateQueryResult(
final SmartDateQueryResult delegate, {
String? title,
List? subtitle,
String? icon,
String? selection,
}) : delegate = (delegate is DelegatingSmartDateQueryResult
? delegate.unbox()
: delegate),
_title = title,
_subtitle = subtitle,
_selection = selection,
_icon = icon;