buildSelectionString method

String buildSelectionString(
  1. TZDateTime resolvedDate
)

Creates the readable selection string

Implementation

String buildSelectionString(TZDateTime resolvedDate) {
  // Replace matched tokens with the name of the actual date field
  return originalQuery!.replaceAll(matchedTerm!, metaDate.remindLabel!);
}