getFullFormattedDate method

String getFullFormattedDate({
  1. String? from,
})

Implementation

String getFullFormattedDate({String? from}) {
  initializeDateFormatting("pt_BR");
  return "${getOnlyFormattedDate(from: from)} às ${getOnlyFormattedTime(from: from)}";
}