DelegatingSmartDateQueryResult constructor

DelegatingSmartDateQueryResult(
  1. SmartDateQueryResult delegate, {
  2. String? title,
  3. List? subtitle,
  4. String? icon,
  5. 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;