Telephony class
This includes the telephony information.
Constructors
- Telephony({String? phoneType, String? networkOperatorName, String? networkOperatorCode, String? networkOperatorCountry, String? simProviderName, String? simProviderCountry, String? simState, String? networkType, bool? isDeviceRoaming})
- constructor of Telephony
- Telephony.fromJson(String source)
-
fromJson returns the telephony from json.
factory
-
Telephony.fromMap(Map<
String, dynamic> map) -
fromMap returns the telephony from map.
factory
Properties
- hashCode → int
-
The hash code for this object.
no setteroverride
- isDeviceRoaming ↔ bool?
-
isDeviceRoaming is the state of the device roaming . i.e .
getter/setter pair
- networkOperatorCode ↔ String?
-
networkOperatorCode is the code of the network operator.
getter/setter pair
- networkOperatorCountry ↔ String?
-
networkOperatorCountry is the code of the network country.
getter/setter pair
- networkOperatorName ↔ String?
-
networkOperatorName is the name of the network operator.
getter/setter pair
- networkType ↔ String?
-
networkType is the type of network.i.e. wifi, cellular, etc.
getter/setter pair
- phoneType ↔ String?
-
phoneType is the type of phone.i.e. gsm, cdma, etc.
getter/setter pair
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- simProviderCountry ↔ String?
-
simProviderCountry is the country code of the sim provider.
getter/setter pair
- simProviderName ↔ String?
-
simProviderName is the name of the sim provider.
getter/setter pair
- simState ↔ String?
-
simState is the state of the sim.
getter/setter pair
Methods
-
copyWith(
{String? phoneType, String? networkOperatorName, String? networkOperatorCode, String? networkOperatorCountry, String? simProviderName, String? simProviderCountry, String? simState, String? networkType, bool? isDeviceRoaming}) → Telephony - 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 the json of telephony.
-
toMap(
) → Map< String, dynamic> - toMap returns the map of telephony.
-
toString(
) → String -
A string representation of this object.
override
Operators
-
operator ==(
Object other) → bool -
The equality operator.
override