remindLabel property
String?
get
remindLabel
Implementation
String? get remindLabel {
if (source.fact is RemindableFact) {
return (source.fact as RemindableFact).remindLabel(source.metaDate);
} else if (source.fact is LabeledFact) {
return (source.fact as LabeledFact).subtitle(source.contact!);
} else {
return null;
}
}