SystemFiles class

SystemFiles is information about the system files.

Constructors

SystemFiles({required SystemType cpuInfo, required SystemType hosts, required SystemType memoryInfo})
constructor for the class.
SystemFiles.fromJson(String source)
fromJson returns a instance of SystemFiles from a json string.
factory
SystemFiles.fromMap(Map<String, dynamic> map)
fromMap returns instance of SystemFiles from a map.
factory

Properties

cpuInfo SystemType
cpuInfo is information about the CPU.
getter/setter pair
hashCode int
The hash code for this object.
no setteroverride
hosts SystemType
hosts is information about the hosts.
getter/setter pair
memoryInfo SystemType
memoryInfo is information about the memory.
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

copyWith({SystemType? cpuInfo, SystemType? hosts, SystemType? memoryInfo}) SystemFiles
copyWith is the method to copy the class.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() String
toJson returns a json string of the object.
toMap() Map<String, dynamic>
toMap returns a map of the object.
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
override