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