File tree Expand file tree Collapse file tree 3 files changed +8
-6
lines changed
packages/device_info/device_info_platform_interface Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change
1
+ ## 1.0.1
2
+
3
+ - Documentation typo fixed.
4
+
1
5
## 1.0.0
2
6
3
7
- Initial open-source release.
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ export 'model/ios_device_info.dart';
22
22
/// platform implementations that `implements` this interface will be broken by newly added
23
23
/// [DeviceInfoPlatform] methods.
24
24
abstract class DeviceInfoPlatform extends PlatformInterface {
25
- /// Constructs a UrlLauncherPlatform .
25
+ /// Constructs a DeviceInfoPlatform .
26
26
DeviceInfoPlatform () : super (token: _token);
27
27
28
28
static final Object _token = Object ();
@@ -41,14 +41,12 @@ abstract class DeviceInfoPlatform extends PlatformInterface {
41
41
_instance = instance;
42
42
}
43
43
44
- // Gets the Android device information.
45
- // ignore: public_member_api_docs
44
+ /// Gets the Android device information.
46
45
Future <AndroidDeviceInfo > androidInfo () {
47
46
throw UnimplementedError ('androidInfo() has not been implemented.' );
48
47
}
49
48
50
- // Gets the iOS device information.
51
- // ignore: public_member_api_docs
49
+ /// Gets the iOS device information.
52
50
Future <IosDeviceInfo > iosInfo () {
53
51
throw UnimplementedError ('iosInfo() has not been implemented.' );
54
52
}
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ description: A common platform interface for the device_info plugin.
3
3
homepage : https://github.com/flutter/plugins/tree/master/packages/device_info
4
4
# NOTE: We strongly prefer non-breaking changes, even at the expense of a
5
5
# less-clean API. See https://flutter.dev/go/platform-interface-breaking-changes
6
- version : 1.0.0
6
+ version : 1.0.1
7
7
8
8
dependencies :
9
9
flutter :
You can’t perform that action at this time.
0 commit comments