AccountQuota.fromJson constructor
Implementation
factory AccountQuota.fromJson(Map<String, dynamic> json) {
return AccountQuota(
accountQuotaName: json['AccountQuotaName'] as String?,
max: json['Max'] as int?,
used: json['Used'] as int?,
);
}