E method

String E()

Parse from DateTime to String corresponding to an Intl DateFormat.

Outputs a string representing the day of the week.

DateTimeからIntlのDateFormatに対応したStringにパースします。

曜日を表す文字列を出力します。

Please refer to the following page for details.

詳細は下記ページを参考にしてください。

https://api.flutter.dev/flutter/intl/DateFormat-class.html

Implementation

String E() {
  return format("E");
}