formatDateToLocalTime method

String formatDateToLocalTime(
  1. String createdAt
)

Implementation

String formatDateToLocalTime(String createdAt) {
  DateTime utcTime = DateTime.parse(createdAt).toUtc();
  DateTime localTime = utcTime.toLocal();
  final formatter = DateFormat('MM-dd-yyyy | hh:mm a');
  return formatter.format(localTime);
}