getCurrentTimestamp static method

String getCurrentTimestamp(
  1. LogsConfig config
)

Implementation

static String getCurrentTimestamp(LogsConfig config) {
  final now = DateTime.now();
  return DateFormat(config.timestampFormat.toString()).format(now);
}