formatTimestampImageFilename function

String formatTimestampImageFilename(
  1. DateTime timestamp
)

Implementation

String formatTimestampImageFilename(DateTime timestamp) {
  final t = timestamp.toLocal();
  return '${_pad2(t.day)}_${_pad2(t.month)}_${t.year}_${_pad2(t.hour)}_${_pad2(t.minute)}_${_pad2(t.second)}.jpg';
}