toWeekdayAbbreviationStr property

String toWeekdayAbbreviationStr

Returns the weekday abbreviated in pt-br

EX: Seg, Ter, Quar...

Implementation

String get toWeekdayAbbreviationStr {
  final weekday = weekDaysInPortuguesePtBR[this.weekday];
  if (weekday == null) return '';

  return weekday['shortName'] ?? '';
}