toMap method
Implementation
Map<dynamic, dynamic> toMap() {
return {
'networkCountryIso': networkCountryIso,
'mobileCountryCode': mobileCountryCode,
'mobileNetworkCode': mobileNetworkCode,
'displayName': displayName,
'simState': simState,
'isoCountryCode': isoCountryCode,
'cellId': cellId?.toMap(),
'phoneNumber': phoneNumber,
'carrierName': carrierName,
'subscriptionId': subscriptionId,
'networkGeneration': networkGeneration,
'radioType': radioType,
'networkOperatorName': networkOperatorName,
};
}