fullFormat method

String fullFormat({
  1. String futureLabel = "in",
  2. String historyLabel = "ago",
  3. bool withYear = false,
  4. String dateLabel = "",
})

Implementation

String fullFormat({
  String futureLabel = "in",
  String historyLabel = "ago",
  bool withYear = false,
  String dateLabel = "",
}) {
  return flexiDateFormatter.call(this,
      futureLabel: futureLabel,
      historyLabel: historyLabel,
      withYear: withYear,
      dateLabel: dateLabel);
}