temp property

String get temp

获得临时路径 >>>

Implementation

String get temp {
  if (_library == null) {
    throw Exception('Need run setup at first or use tempAsync');
  }

  final String uuid = Uuid().v4();
  return _library! + '/$uuid';
}