getTempFilePath static method

String? getTempFilePath(
  1. String name
)

Gets the path of a temporary file with the specified name.

Returns the file path or null if the file doesn't exist.

Implementation

static String? getTempFilePath(String name) {
  return _tempFiles[name];
}