GetNetworkProfileResponse.fromJson constructor

GetNetworkProfileResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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