Memory class

Constructors

Memory({MemoryTypeInfo? ram, MemoryTypeInfo? internal, MemoryTypeInfo? external})
constructor for the memory class.
Memory.fromJson(String source)
fromJson returns a instance of Memory from a json string.
factory
Memory.fromMap(Map<String, dynamic> map)
fromMap returns instance of Memory from a map.
factory

Properties

external MemoryTypeInfo?
external is the information about the external.
getter/setter pair
hashCode int
The hash code for this object.
no setteroverride
internal MemoryTypeInfo?
internal is the information about the internal.
getter/setter pair
ram MemoryTypeInfo?
ram is the information about the ram.
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

copyWith({MemoryTypeInfo? ram, MemoryTypeInfo? internal, MemoryTypeInfo? external}) Memory
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