subtitle property

  1. @override
List get subtitle
override

Implementation

@override
List get subtitle => [
      if (source.fact is RemindableFact) (source.fact as RemindableFact).remindLabel(source.metaDate),
      if (source.fact is LabeledFact) (source.fact as LabeledFact).subtitle(source.contact!),
      "Due date: $selection",
    ];