createDirectoryIfNotExists method

  1. @override
void createDirectoryIfNotExists({
  1. required String path,
})
override

디렉토리가 없으면 생성합니다.

Implementation

@override
void createDirectoryIfNotExists({required String path}) {
  _dataSource.createDirectoryIfNotExists(path: path);
}