st_toEn method

String st_toEn({
  1. bool withTime = false,
  2. bool withDay = true,
})

Converts the date to an English-formatted string.

Implementation

String st_toEn({bool withTime = false, bool withDay = true}) {
  return SuperTime.toEn(this, withTime: withTime, withDay: withDay);
}