SecurityPolicyRuleRateLimitOptionsThreshold.fromJson constructor
SecurityPolicyRuleRateLimitOptionsThreshold.fromJson(
- Map json_
Implementation
SecurityPolicyRuleRateLimitOptionsThreshold.fromJson(core.Map json_)
: this(
count: json_.containsKey('count') ? json_['count'] as core.int : null,
intervalSec: json_.containsKey('intervalSec')
? json_['intervalSec'] as core.int
: null,
);