VolumeStatistics.fromJson constructor
Implementation
factory VolumeStatistics.fromJson(Map<String, dynamic> json) {
return VolumeStatistics(
inboxRawCount: json['InboxRawCount'] as int?,
projectedInbox: json['ProjectedInbox'] as int?,
projectedSpam: json['ProjectedSpam'] as int?,
spamRawCount: json['SpamRawCount'] as int?,
);
}