SslPoliciesListAvailableFeaturesResponse.fromJson constructor
SslPoliciesListAvailableFeaturesResponse.fromJson(
- Map json_
Implementation
SslPoliciesListAvailableFeaturesResponse.fromJson(core.Map json_)
: this(
features: json_.containsKey('features')
? (json_['features'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
);