formatted property

String get formatted

The formatted date as a string.

Implementation

String get formatted {
  /// The formatter that formats the date in the specific way.
  final formatter = DateFormat(kDateFormat, kLocale);
  return formatter.format(this);
}