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