getCurrentTimestamp function

String getCurrentTimestamp()

Implementation

String getCurrentTimestamp() {
  var now = DateTime.now();
  var timestamp = now.millisecondsSinceEpoch;
  return timestamp.toString();
}