IspPlacement.fromJson constructor
Implementation
factory IspPlacement.fromJson(Map<String, dynamic> json) {
return IspPlacement(
ispName: json['IspName'] as String?,
placementStatistics: json['PlacementStatistics'] != null
? PlacementStatistics.fromJson(
json['PlacementStatistics'] as Map<String, dynamic>)
: null,
);
}