st_toFr method

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

Converts the date to a French-formatted string.

Implementation

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