listFromJson static method

List<RolloutStrategyAttribute> listFromJson(
  1. List? json
)

Implementation

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