format abstract method

String format(
  1. DateTime date
)

Format the given date and return the formatted string.

The format specifiers are case-sensitive.

The following table lists the available format specifiers:

Specifier Meaning Example
YYYY Year with 4 digits 2019
YY Year with 2 digits 19
MMMM Month name January
... ... ...

Implementation

String format(DateTime date);