SendQuota.fromJson constructor

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

Implementation

factory SendQuota.fromJson(Map<String, dynamic> json) {
  return SendQuota(
    max24HourSend: json['Max24HourSend'] as double?,
    maxSendRate: json['MaxSendRate'] as double?,
    sentLast24Hours: json['SentLast24Hours'] as double?,
  );
}