Telephony.fromMap constructor
fromMap returns the telephony from map.
Implementation
factory Telephony.fromMap(Map<String, dynamic> map) {
return Telephony(
phoneType: map['phoneType'],
networkOperatorName: map['networkOperatorName'],
networkOperatorCode: map['networkOperatorCode'],
networkOperatorCountry: map['networkOperatorCountry'],
simProviderName: map['simProviderName'],
simProviderCountry: map['simProviderCountry'],
simState: map['simState'],
networkType: map['networkType'],
isDeviceRoaming: map['isDeviceRoaming'],
);
}