formatCompactDate method

  1. @override
String formatCompactDate(
  1. DateTime date
)
override

Formats the date in a compact format.

Usually just the numeric values for the for day, month and year are used.

Examples:

  • US English: 02/21/2019
  • Russian: 21.02.2019

See also:

Implementation

@override
String formatCompactDate(DateTime date) {
  final jalaliDate = Jalali.fromDateTime(date);
  return '${jalaliDate.day}/${jalaliDate.month}/${jalaliDate.year}'; // Compact date format
}