listFromJson static method
Implementation
static List<RolloutStrategyAttributeConditional> listFromJson(
List<dynamic>? json) =>
json == null
? <RolloutStrategyAttributeConditional>[]
: json.map((value) => fromJson(value)).toList().fromNull();