toCompleteDateStr property

String toCompleteDateStr

Returns the complete date and time in pt-br.

Ex: 12 de abril de 2020

Implementation

String get toCompleteDateStr {
  final month = this.toMonthStr;
  return '$day de $month de $year';
}