UsageAccountLimits.fromJson constructor
Implementation
factory UsageAccountLimits.fromJson(Map<String, dynamic> json) {
return UsageAccountLimits(
servers: UsageAccountLimit.fromJson(json['servers']),
users: UsageAccountLimit.fromJson(json['users']),
email: UsageAccountLimit.fromJson(json['email']),
sms: UsageAccountLimit.fromJson(json['sms'])
);
}