DomainIspPlacement.fromJson constructor

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

Implementation

factory DomainIspPlacement.fromJson(Map<String, dynamic> json) {
  return DomainIspPlacement(
    inboxPercentage: json['InboxPercentage'] as double?,
    inboxRawCount: json['InboxRawCount'] as int?,
    ispName: json['IspName'] as String?,
    spamPercentage: json['SpamPercentage'] as double?,
    spamRawCount: json['SpamRawCount'] as int?,
  );
}