RealtimeTextFormats constructor
const
RealtimeTextFormats({
- String after = "after",
- String ago = "ago",
- String now = "now",
- String today = "Today",
- String tomorrow = "Tomorrow",
- String yesterday = "Yesterday",
- TextFormat second = const TextFormat(singular: "second", plural: "seconds"),
- TextFormat minute = const TextFormat(singular: "minute", plural: "minutes"),
- TextFormat hour = const TextFormat(singular: "hour", plural: "hours"),
- TextFormat day = const TextFormat(singular: "day", plural: "days"),
- TextFormat week = const TextFormat(singular: "week", plural: "weeks"),
- TextFormat month = const TextFormat(singular: "month", plural: "months"),
- TextFormat year = const TextFormat(singular: "year", plural: "years"),
Implementation
const RealtimeTextFormats({
this.after = "after",
this.ago = "ago",
this.now = "now",
this.today = "Today",
this.tomorrow = "Tomorrow",
this.yesterday = "Yesterday",
this.second = const TextFormat(
singular: "second",
plural: "seconds",
),
this.minute = const TextFormat(
singular: "minute",
plural: "minutes",
),
this.hour = const TextFormat(
singular: "hour",
plural: "hours",
),
this.day = const TextFormat(
singular: "day",
plural: "days",
),
this.week = const TextFormat(
singular: "week",
plural: "weeks",
),
this.month = const TextFormat(
singular: "month",
plural: "months",
),
this.year = const TextFormat(
singular: "year",
plural: "years",
),
});