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