utfToLocalDateFormatExtenso static method

String utfToLocalDateFormatExtenso(
  1. String date
)

CONVERTE UTC PARA DATA LOCAL E FORMATA 29 DE SETEMBRO DE 2021

Implementation

static String utfToLocalDateFormatExtenso(String date) {
  if (date.isEmpty) return '';
  var dateTime = DateFormat("yyyy-MM-dd'T'HH:mm:ss").parse(date, true);
  return formatExtenso(dateTime.toLocal());
}