GetNetworkProfileResponse.fromJson constructor
Implementation
factory GetNetworkProfileResponse.fromJson(Map<String, dynamic> json) {
return GetNetworkProfileResponse(
networkProfile: json['NetworkProfile'] != null
? NetworkProfile.fromJson(
json['NetworkProfile'] as Map<String, dynamic>)
: null,
);
}