Network class

Network is information about the network.

Constructors

Network({Telephony? telephony, Wifi? wifi})
constructor for the network class.
Network.fromJson(String source)
fromJson returns a instance of Network from a json string.
factory
Network.fromMap(Map<String, dynamic> map)
fromMap returns instance of Network 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
telephony Telephony?
Telephony is information about the telephony.
getter/setter pair
wifi Wifi?
Wifi is information about the wifi.
getter/setter pair

Methods

copyWith({Telephony? telephony, Wifi? wifi}) Network
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