This repository was archived by the owner on Feb 22, 2023. It is now read-only.
File tree 3 files changed +3
-7
lines changed
packages/path_provider/path_provider_windows 3 files changed +3
-7
lines changed Original file line number Diff line number Diff line change 1
- ## 0.1.0-nullsafety.1
2
-
3
- * Bump win32 dependency to latest version.
4
-
5
1
## 0.1.0-nullsafety
6
2
7
3
* Migrate to null safety
Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ class PathProviderWindows extends PathProviderPlatform {
116
116
/// [WindowsKnownFolder] .
117
117
Future <String > getPath (String folderID) {
118
118
final pathPtrPtr = allocate <Pointer <Utf16 >>();
119
- final Pointer <GUID > knownFolderID = calloc <GUID >()..ref. setGUID (folderID);
119
+ final Pointer <GUID > knownFolderID = calloc <GUID >()..setGUID (folderID);
120
120
121
121
try {
122
122
final hr = SHGetKnownFolderPath (
Original file line number Diff line number Diff line change 1
1
name : path_provider_windows
2
2
description : Windows implementation of the path_provider plugin
3
3
homepage : https://github.com/flutter/plugins/tree/master/packages/path_provider/path_provider_windows
4
- version : 0.1.0-nullsafety.1
4
+ version : 0.1.0-nullsafety
5
5
6
6
flutter :
7
7
plugin :
@@ -17,7 +17,7 @@ dependencies:
17
17
flutter :
18
18
sdk : flutter
19
19
ffi : ^0.2.0-nullsafety.1
20
- win32 : ^2.0.0-nullsafety.9
20
+ win32 : ^2.0.0-nullsafety.8
21
21
22
22
dev_dependencies :
23
23
flutter_test :
You can’t perform that action at this time.
0 commit comments