CREATE_TIME function

String CREATE_TIME(
  1. DateTime date
)

Implementation

String CREATE_TIME(DateTime date){
  return DateFormat('dd/MM/yyyy HH:mm:ss').format(date);
}