createTempDestination static method

String createTempDestination(
  1. String suffix
)

Creates a temporary destination

Implementation

static String createTempDestination(String suffix) {
  return '/temp/${DateTime.now().millisecondsSinceEpoch}-$suffix';
}