AccountQuota.fromJson constructor

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

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