RateBasedStatementManagedKeysIPSet.fromJson constructor
Implementation
factory RateBasedStatementManagedKeysIPSet.fromJson(
Map<String, dynamic> json) {
return RateBasedStatementManagedKeysIPSet(
addresses: (json['Addresses'] as List?)
?.whereNotNull()
.map((e) => e as String)
.toList(),
iPAddressVersion:
(json['IPAddressVersion'] as String?)?.toIPAddressVersion(),
);
}