getLocalDateFromDateWithTime static method

String getLocalDateFromDateWithTime(
  1. DateTime dateTime,
  2. BuildContext context
)

Implementation

static String getLocalDateFromDateWithTime(DateTime dateTime,BuildContext context){
  return DateFormat('yyyy-MM-dd hh:mm:ss').format(dateTime);
}