GetRateBasedRuleManagedKeysResponse.fromJson constructor
Implementation
factory GetRateBasedRuleManagedKeysResponse.fromJson(
Map<String, dynamic> json) {
return GetRateBasedRuleManagedKeysResponse(
managedKeys: (json['ManagedKeys'] as List?)
?.whereNotNull()
.map((e) => e as String)
.toList(),
nextMarker: json['NextMarker'] as String?,
);
}