dataVencimentoFormatada property

String get dataVencimentoFormatada

Data de vencimento formatada (DD/MM/AAAA)

Implementation

String get dataVencimentoFormatada {
  if (dataVencimento.length == 8) {
    return FormatadorUtils.formatDateFromString(dataVencimento);
  }
  return dataVencimento;
}