listFromJson static method
Implementation
static List<FeatureRolloutStrategy> listFromJson(List<dynamic>? json) {
return json == null
? <FeatureRolloutStrategy>[]
: json.map((value) => FeatureRolloutStrategy.fromJson(value)).toList();
}