IspPlacement.fromJson constructor

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

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,
  );
}