formattedDate property

String? formattedDate

Implementation

String? get formattedDate {
  if (isFlexible) return flexiDate!.formatted();
  final localDate = resultDate!.toLocal();
  var showTime = shouldDisplayTime;
  return smartDateFormat(localDate, formatTime: showTime);
}