UsageAccountLimits.fromJson constructor

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

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'])
  );
}