SimInfo class

SimInfo is information about the sims.

Constructors

SimInfo({required List<SIMType> sims})
constructor for the class.
SimInfo.fromJson(String source)
fromJson returns a instance of SimInfo from a json string.
factory
SimInfo.fromMap(Map<String, dynamic> map)
fromMap returns instance of SimInfo from a map.
factory

Properties

hashCode int
The hash code for this object.
no setteroverride
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
sims List<SIMType>
sims is list of SIMType.
getter/setter pair

Methods

copyWith({List<SIMType>? sims}) SimInfo
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 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