VolumeStatistics.fromJson constructor

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

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