AndroidDeviceInfo class
AndroidDeviceInfo is the class for android device information.
Constructors
- AndroidDeviceInfo({SystemInfo? system, CPUInfo? cpu, Android? android, DRMINFO? drmInfo, Memory? memory, CameraInfos? camera, Battery? battery, Display? display, Thermal? thermal, Network? network, SimInfo? simInfo, SystemFiles? systemFile})
- This is the constructor for the class.
- AndroidDeviceInfo.fromJson(String source)
-
fromJson is the method to convert the json to the android device information.
factory
-
AndroidDeviceInfo.fromMap(Map<
String, dynamic> map) -
fromMap is the method to convert the map to the android device information.
factory
Properties
- android ↔ Android?
-
android is the android information of the android device.
getter/setter pair
- battery ↔ Battery?
-
battery is the battery information of the android device.
getter/setter pair
- camera ↔ CameraInfos?
-
camera is the camera information of the android device.
getter/setter pair
- cpu ↔ CPUInfo?
-
cpu is the cpu information of the android device.
getter/setter pair
- display ↔ Display?
-
display is the display information of the android device.
getter/setter pair
- drmInfo ↔ DRMINFO?
-
drmInfo is the drm information of the android device.
getter/setter pair
- hashCode → int
-
The hash code for this object.
no setteroverride
- memory ↔ Memory?
-
memory is the memory information of the android device.
getter/setter pair
- network ↔ Network?
-
network is the network information of the android device.
getter/setter pair
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- simInfo ↔ SimInfo?
-
simInfo is the sim information of the android device.
getter/setter pair
- system ↔ SystemInfo?
-
system is the system information of the android device.
getter/setter pair
- systemFile ↔ SystemFiles?
-
systemFile is the system files information of the android device.
getter/setter pair
- thermal ↔ Thermal?
-
thermal is the thermal information of the android device.
getter/setter pair
Methods
-
copyWith(
{SystemInfo? system, CPUInfo? cpu, Android? android, DRMINFO? drmInfo, Memory? memory, CameraInfos? camera, Battery? battery, Display? display, Thermal? thermal, Network? network, SimInfo? simInfo, SystemFiles? systemFile}) → AndroidDeviceInfo - copyWith is the function to copy the class.
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → String - toJson is the method to convert the android device information to json.
-
toMap(
) → Map< String, dynamic> - toMap is the method to convert the android device information to map.
-
toString(
) → String -
A string representation of this object.
override
Operators
-
operator ==(
Object other) → bool -
The equality operator.
override